Home

Adolescent Insomnia Study

Apple Stocks

Mental Health Data Exploration Sentiment Analysis (Classifiers)

Math Text Classification (ML)

Twitter Usage and Age(ML)

Introduction to Project: Data Analysis of Childhood Insomnia¶

Introduction¶

This notebook presents an exploratory analysis of the Adolescent Insomnia Study dataset. The dataset is composed of several CSV files that contain demographic, clinical, and item-level data from a study on insomnia in adolescents.

The goal of this analysis is to use logistic regression to predict the sex of the participants based on various clinical measures. This is a preliminary analysis and the choice of features is based on their potential relevance to the target variable.

The analysis is divided into several steps, each of which is described in detail in the following sections.

In [1]:
import matplotlib.pyplot as plt

available_styles = plt.style.available

for style_name in available_styles:
    print(f"{style_name}: plt.style.use('{style_name}')")
    
plt.style.use('seaborn-darkgrid')  # Replace 'seaborn' with your chosen style
Solarize_Light2: plt.style.use('Solarize_Light2')
_classic_test_patch: plt.style.use('_classic_test_patch')
_mpl-gallery: plt.style.use('_mpl-gallery')
_mpl-gallery-nogrid: plt.style.use('_mpl-gallery-nogrid')
bmh: plt.style.use('bmh')
classic: plt.style.use('classic')
dark_background: plt.style.use('dark_background')
fast: plt.style.use('fast')
fivethirtyeight: plt.style.use('fivethirtyeight')
ggplot: plt.style.use('ggplot')
grayscale: plt.style.use('grayscale')
seaborn: plt.style.use('seaborn')
seaborn-bright: plt.style.use('seaborn-bright')
seaborn-colorblind: plt.style.use('seaborn-colorblind')
seaborn-dark: plt.style.use('seaborn-dark')
seaborn-dark-palette: plt.style.use('seaborn-dark-palette')
seaborn-darkgrid: plt.style.use('seaborn-darkgrid')
seaborn-deep: plt.style.use('seaborn-deep')
seaborn-muted: plt.style.use('seaborn-muted')
seaborn-notebook: plt.style.use('seaborn-notebook')
seaborn-paper: plt.style.use('seaborn-paper')
seaborn-pastel: plt.style.use('seaborn-pastel')
seaborn-poster: plt.style.use('seaborn-poster')
seaborn-talk: plt.style.use('seaborn-talk')
seaborn-ticks: plt.style.use('seaborn-ticks')
seaborn-white: plt.style.use('seaborn-white')
seaborn-whitegrid: plt.style.use('seaborn-whitegrid')
tableau-colorblind10: plt.style.use('tableau-colorblind10')

Aside On the Notebook¶

The notebook features these qualities:

  • Interspersal of exercises and quiz questions;
  • At the risk of the notebook being long I attempt to define keywords so that the notebook can be somewhat self contained;
  • I will be adding to the as time progresses
  • We have two other notebooks associated with the same project: one for more models and another serves as an appendix.

Contact me:¶

If you have any questions, would like to collaborate and/or have any relevant data you want to share please say hello at jgcblue9558@gmail.com!

Libraries We Need and Importing Data¶

We will be importing:

  • pandas: for it's dataframe data tructures and the many tools that ship with it;
  • sklearn: a library that has many "models" just waiting to be instantiated and filled with your parameters;
  • seaborn: a nice alternative (built on top of to be precise) to the matplotlib library for data visualizations. It has some more modern visual tools and is geared slightly more towards Statistics than matplotlib.
In [2]:
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler
from sklearn.linear_model import LogisticRegression
from sklearn.metrics import accuracy_score, confusion_matrix, classification_report
#importing the model
from sklearn.linear_model import LogisticRegression



#importing tools for splitting the dataset for training and testing
from sklearn.model_selection import train_test_split
#importing tools for evaluating model performance
from sklearn.metrics import accuracy_score, confusion_matrix, classification_report
import matplotlib.pyplot as plt
import seaborn as sns


# Load the data
insomnia_data = pd.read_csv('insomnia_data.csv')
insomnia_item_level_data = pd.read_csv('insomnia_item_level_data.csv')
insomnia_data_dictionary = pd.read_csv('insomnia_data_dictionary.csv')


#Even simpler names for these objects

ind=insomnia_data
ini=insomnia_item_level_data
indict=insomnia_data_dictionary




selected_rows = insomnia_data_dictionary['Columns'].iloc[[3,4,16,17,18]]  # Replace with your desired indices


#print(selected_rows)b

print(insomnia_item_level_data.head(1))
  Unnamed: 0              Pittsburgh Sleep Quality Index (PSQI)  \
0        NaN  During the past month, what time have you usua...   

             Pittsburgh Sleep Quality Index (PSQI).1  \
0  During the past month, how long (in minutes) h...   

             Pittsburgh Sleep Quality Index (PSQI).2  \
0  During the past month, what time have you usua...   

             Pittsburgh Sleep Quality Index (PSQI).3  \
0  How much time (in minutes) do you usually spen...   

             Pittsburgh Sleep Quality Index (PSQI).4  \
0  During the past month, how many hours of actua...   

             Pittsburgh Sleep Quality Index (PSQI).5  \
0  Cannot get to sleep within 30 minutes (0=Not d...   

             Pittsburgh Sleep Quality Index (PSQI).6  \
0  Wake up in the middle of the night or early mo...   

             Pittsburgh Sleep Quality Index (PSQI).7  \
0  Have to get up to use the bathroom (0=Not duri...   

             Pittsburgh Sleep Quality Index (PSQI).8  ...  \
0  Cannot breathe comfortably (0=Not during the p...  ...   

                               Race, Ethnicity & Sex  \
0  Race (choice=<strong>American Indian/Alaska Na...   

                             Race, Ethnicity & Sex.1  \
0  Race (choice=<strong>Asian:</strong> A person ...   

                             Race, Ethnicity & Sex.2  \
0  Race (choice=<strong>Native Hawaiian or Other ...   

                             Race, Ethnicity & Sex.3  \
0  Race (choice=<strong>Black or African American...   

                             Race, Ethnicity & Sex.4  \
0  Race (choice=<strong>White:</strong> A person ...   

                             Race, Ethnicity & Sex.5  \
0  Race (choice=<strong>Unknown / Not Reported</s...   

                             Race, Ethnicity & Sex.6  \
0  Ethnicity (choice=<strong>Hispanic or Latino</...   

                             Race, Ethnicity & Sex.7  \
0  Ethnicity (choice=<strong>NOT Hispanic or Lati...   

                             Race, Ethnicity & Sex.8  \
0  Ethnicity (choice=<strong>Unknown / Not Report...   

     Race, Ethnicity & Sex.9  
0  Gender (0=Female, 1=Male)  

[1 rows x 471 columns]

On the CSV Files:¶

You may or may not have familiarity with the way that data collection is typically done in Statistical studies. Here we see a common arrangement for such a "package".

  1. A csv file with data in it most typical form;
  2. A csv file with a dictionary for helping the reader understand what the features/items mean;
  3. A "item-level" csv file where items (referring to questions for a psychological metric questionnaire are provided above the standard headings)

We will work (throughout this notebook at least) on the first two. Our datasets have high number of columns so we really will be forced to work with the dictionary csv. Good practice!

Cleanliness is Next to...¶

I remark here that we are quite lucky in that the data set has been "engineered" quite well. It is clean without null values or missing information. So this part of the project will be trivial.

Ex: What does it mean when you have <X>.<Y> where X is a library and Y is a ?

That is an example of importing module Y from library X:).

The Data Set .... Through Two Lenses¶

Since this is a notebook within a website dealing with both "Data Analysis" and "Data Science" I want to take a little bit of time to discuss what sorts of methodologies may be suited for and why.

Let's consider both domains:

Data Analysis¶

Recall that Data Analysis is quite related to Statistics in fact it might be considered a superset in some ways and subset in others (doesn't require that one conduct studies for instance). The data we have is not tiny but definitely not large.

We can do things like:

  • Create scatter plots
  • Calculate Summary Statistics such as: mean, standard deviation, mode, etc;

Pose Questions that could relate to actions/policy changes.

Data Science

Now when one uses the words Data Science one is usually referring to the training of models (programs) capable of ingesting new data and predicting categories and or numerical values (most often one wants to predict labels but strictly speaking the field is not limited to that).

One typically wants a lot of data. That is the main thing to remember when dealing with the question of whether or not you should consider machine learning however how big is a little flexible. Some models perform well with smallish data sets.

In [3]:
display(insomnia_data_dictionary)
Columns Description
0 Group INSOMNIA= 1, CONTROL=0
1 SubGroup clean INSOMNIA= 2, subclinical INSOMNIA = 1, C...
2 Remote Remote data collection = 1, In person data col...
3 Sex MALE = 1, FEMALE = 0
4 Age Years
... ... ...
90 ders_goals DERS Difficulties Engaging in Goal-Directed Be...
91 ders_impulse DERS Impulse control difficulties (IMPULSE) (D...
92 ders_awareness DERS Lack of Emotional Awareness (AWARENESS) (...
93 ders_strategies DERS Limited Access to Emotion Regulation Stra...
94 ders_clarity DERS Lack of Emotional Clarity (CLARITY) (Diff...

95 rows × 2 columns

In [4]:
print(insomnia_data.head)
<bound method NDFrame.head of          ID  Group  SubGroup  Remote  Sex   Age  American_Indian  Asian  \
0   sub_001      0         0       0    0  19.3                0      0   
1   sub_002      0         0       0    0  19.3                0      0   
2   sub_003      0         0       0    1  18.8                0      0   
3   sub_004      0         0       0    0  18.8                0      0   
4   sub_005      1         2       0    1  19.6                0      0   
..      ...    ...       ...     ...  ...   ...              ...    ...   
90  sub_091      1         1       1    1  16.9                0      0   
91  sub_092      1         2       1    0  16.6                0      0   
92  sub_093      1         2       1    1  17.3                0      0   
93  sub_094      1         2       1    0  16.8                0      0   
94  sub_095      1         1       1    0  16.7                0      0   

    Native_Hawaiian  Black  ...  Zcope_acccept  Zcope_suppression  \
0                 0      0  ...      -0.701562           2.215354   
1                 0      0  ...       1.545013           0.327833   
2                 0      0  ...      -0.327133           1.743474   
3                 0      0  ...      -1.824849          -1.559689   
4                 0      0  ...      -2.199279          -0.615928   
..              ...    ...  ...            ...                ...   
90                0      0  ...      -1.450420          -0.144048   
91                0      0  ...       0.421725          -0.144048   
92                0      0  ...       0.796155          -0.144048   
93                0      0  ...       1.919442           0.327833   
94                0      0  ...      -0.327133           2.215354   

    Zcope_planning  Zders_nonaccpetance  Zders_goals  Zders_impulse  \
0         0.740137            -1.122805     1.905727      -0.114565   
1         1.078180            -0.552396    -0.302127      -0.114565   
2        -0.612036            -0.267191    -1.406055      -0.425527   
3        -0.612036            -0.552396     0.249836      -0.114565   
4        -0.950080             0.588422     1.353763       0.196397   
..             ...                  ...          ...            ...   
90       -0.612036             2.299648    -0.302127      -0.736489   
91        0.402094            -0.552396     0.525818       0.818321   
92        0.740137             0.873626     1.353763      -0.736489   
93        1.416224            -1.122805    -1.958018      -1.358413   
94       -0.612036             1.729239     1.077781       2.373131   

    Zders_awareness  Zders_strategies  Zders_clarity  ZDERS_total  
0          1.083087         -0.656051       0.538016     0.575806  
1          1.083087         -0.656051       0.538016     0.153943  
2          0.271626         -0.656051      -0.260601    -0.619473  
3          0.596210         -0.116442       0.538016     0.224254  
4          0.109334          0.153363       1.336632     0.857049  
..              ...               ...            ...          ...  
90         0.109334         -0.925856       0.937324     0.294564  
91        -0.702127         -0.656051       1.735941     0.013322  
92         0.920795          0.153363       2.135249     1.208601  
93        -2.162757         -1.735270      -2.656452    -2.939721  
94        -1.675881          2.581605      -1.059218     0.997670  

[95 rows x 174 columns]>

Why are there multiple csv files?¶

If this is your firs time looking at Statistics data then its probably your first time seeing this sort of arrangement. Essentially when working with such data sets it is often the case that for readability (and even coding reasons) one often wants to have short encoded titles for columns. Of course one can forget what these columns/features represent! The way around this issues is to include other associated documents (commonly as part of say an excel workbook). That is why we have a file insomnia_data_dictionary.csv.

As for the insomnia_item_level_data.csv, it is comprised of self-reported scores for the metric.

Exploring the Dataset¶

First let's taking a look at the dataset using Panda's head function which allows us to see a manageable amount of the data.

In [5]:
print(insomnia_data.head(1))
        ID  Group  SubGroup  Remote  Sex   Age  American_Indian  Asian  \
0  sub_001      0         0       0    0  19.3                0      0   

   Native_Hawaiian  Black  ...  Zcope_acccept  Zcope_suppression  \
0                0      0  ...      -0.701562           2.215354   

   Zcope_planning  Zders_nonaccpetance  Zders_goals  Zders_impulse  \
0        0.740137            -1.122805     1.905727      -0.114565   

   Zders_awareness  Zders_strategies  Zders_clarity  ZDERS_total  
0         1.083087         -0.656051       0.538016     0.575806  

[1 rows x 174 columns]

Investigating What the Labels Mean¶

Recall that we can use the insomnia_data_dictionary to understand what the labels mean.

In [6]:
# Display the first few rows of each dataframe to understand the structure of the data
print('Insomnia Data:')
display(insomnia_data.head())
print('\nInsomnia Item Level Data:')
display(insomnia_item_level_data.head())
print('\nInsomnia Data Dictionary:')
display(insomnia_data_dictionary.head())
Insomnia Data:
ID Group SubGroup Remote Sex Age American_Indian Asian Native_Hawaiian Black ... Zcope_acccept Zcope_suppression Zcope_planning Zders_nonaccpetance Zders_goals Zders_impulse Zders_awareness Zders_strategies Zders_clarity ZDERS_total
0 sub_001 0 0 0 0 19.3 0 0 0 0 ... -0.701562 2.215354 0.740137 -1.122805 1.905727 -0.114565 1.083087 -0.656051 0.538016 0.575806
1 sub_002 0 0 0 0 19.3 0 0 0 0 ... 1.545013 0.327833 1.078180 -0.552396 -0.302127 -0.114565 1.083087 -0.656051 0.538016 0.153943
2 sub_003 0 0 0 1 18.8 0 0 0 0 ... -0.327133 1.743474 -0.612036 -0.267191 -1.406055 -0.425527 0.271626 -0.656051 -0.260601 -0.619473
3 sub_004 0 0 0 0 18.8 0 0 0 0 ... -1.824849 -1.559689 -0.612036 -0.552396 0.249836 -0.114565 0.596210 -0.116442 0.538016 0.224254
4 sub_005 1 2 0 1 19.6 0 0 0 0 ... -2.199279 -0.615928 -0.950080 0.588422 1.353763 0.196397 0.109334 0.153363 1.336632 0.857049

5 rows × 174 columns

Insomnia Item Level Data:
Unnamed: 0 Pittsburgh Sleep Quality Index (PSQI) Pittsburgh Sleep Quality Index (PSQI).1 Pittsburgh Sleep Quality Index (PSQI).2 Pittsburgh Sleep Quality Index (PSQI).3 Pittsburgh Sleep Quality Index (PSQI).4 Pittsburgh Sleep Quality Index (PSQI).5 Pittsburgh Sleep Quality Index (PSQI).6 Pittsburgh Sleep Quality Index (PSQI).7 Pittsburgh Sleep Quality Index (PSQI).8 ... Race, Ethnicity & Sex Race, Ethnicity & Sex.1 Race, Ethnicity & Sex.2 Race, Ethnicity & Sex.3 Race, Ethnicity & Sex.4 Race, Ethnicity & Sex.5 Race, Ethnicity & Sex.6 Race, Ethnicity & Sex.7 Race, Ethnicity & Sex.8 Race, Ethnicity & Sex.9
0 NaN During the past month, what time have you usua... During the past month, how long (in minutes) h... During the past month, what time have you usua... How much time (in minutes) do you usually spen... During the past month, how many hours of actua... Cannot get to sleep within 30 minutes (0=Not d... Wake up in the middle of the night or early mo... Have to get up to use the bathroom (0=Not duri... Cannot breathe comfortably (0=Not during the p... ... Race (choice=<strong>American Indian/Alaska Na... Race (choice=<strong>Asian:</strong> A person ... Race (choice=<strong>Native Hawaiian or Other ... Race (choice=<strong>Black or African American... Race (choice=<strong>White:</strong> A person ... Race (choice=<strong>Unknown / Not Reported</s... Ethnicity (choice=<strong>Hispanic or Latino</... Ethnicity (choice=<strong>NOT Hispanic or Lati... Ethnicity (choice=<strong>Unknown / Not Report... Gender (0=Female, 1=Male)
1 Record ID psqi1 psqi2 psqi3 psqi_4a psqi4 psqi_set1_psqi5a psqi_set1_psqi5b psqi_set1_psqi5c psqi_set1_psqi5d ... race___0 race___1 race___2 race___3 race___4 race___5 ethnicity___0 ethnicity___1 ethnicity___2 Sex
2 sub_001 2200 10 700 15 8.5 0 0 0 0 ... 0 0 0 0 1 0 0 1 0 0
3 sub_002 2200 10 500 10 7 0 0 0 0 ... 0 0 0 0 1 0 0 1 0 0
4 sub_003 2300 45 730 0 8 1 1 0 0 ... 0 0 0 0 1 0 0 1 0 1

5 rows × 471 columns

Insomnia Data Dictionary:
Columns Description
0 Group INSOMNIA= 1, CONTROL=0
1 SubGroup clean INSOMNIA= 2, subclinical INSOMNIA = 1, C...
2 Remote Remote data collection = 1, In person data col...
3 Sex MALE = 1, FEMALE = 0
4 Age Years

Brief Aside on Z-scores:¶

Z-scores, also known as standard scores, are a statistical measure that quantifies how far a particular data point is from the mean of a dataset when measured in terms of standard deviations. They are used to standardize data and allow comparisons between data points that may have different units or scales. Z-scores are calculated using the formula:

$$ Z = \frac{x - \mu}{\sigma} $$

Where:

  • $ Z $ is the z-score.
  • $ x $ is the individual data point.
  • $ \mu $ is the mean of the dataset.
  • $\sigma $ is the standard deviation of the dataset.

Here's what z-scores mean:

  1. Significance and Direction: The sign of the z-score (+ or -) indicates whether the data point is above or below the mean, respectively. Positive z-scores indicate data points above the mean, while negative z-scores indicate data points below the mean.

  2. Magnitude: The magnitude of the z-score indicates how many standard deviations the data point is from the mean. A larger absolute z-score implies that the data point is farther from the mean in terms of standard deviations.

  3. Comparison: Z-scores allow you to compare data points from different distributions. By standardizing data, you can assess how unusual or typical a particular data point is within its distribution.

  4. Outliers: Data points with z-scores significantly higher or lower than a certain threshold (usually around ±2 or ±3) are often considered outliers, as they deviate substantially from the mean.

  5. Normalization: Z-scores standardize data, making it easier to analyze and compare data with different units and scales.

For a standardized normal distribution (mean = 0, standard deviation = 1), z-scores directly correspond to percentiles. For example, a z-score of 1.96 corresponds to the 97.5th percentile, which is commonly used in confidence interval calculations.

A few more examples:

  1. Z-Score = 0: A z-score of 0 indicates that the data point is exactly at the mean of the distribution. It's neither above nor below the mean.

  2. Z-Score < -1: A negative z-score less than -1 suggests that the data point is more than one standard deviation below the mean. It's relatively lower than the average values in the distribution.

  3. Z-Score = -2: A z-score of -2 indicates that the data point is exactly two standard deviations below the mean. It's relatively low and less common in the distribution.

  4. Z-Score < -3: A very low negative z-score, less than -3, implies that the data point is significantly lower than the mean and may be considered an outlier.

  5. Z-Score > 1: A positive z-score greater than 1 suggests that the data point is more than one standard deviation above the mean. It's relatively higher than the average values in the distribution.

  6. Z-Score = 2: A z-score of 2 indicates that the data point is exactly two standard deviations above the mean. It's relatively high and less common in the distribution.

  7. Z-Score > 3: A very high positive z-score, greater than 3, implies that the data point is significantly higher than the mean and may be considered an outlier.

  8. Z-Score between -1 and 1: A z-score between -1 and 1 suggests that the data point is within one standard deviation of the mean. It's relatively close to the average values in the distribution.

  9. Z-Score between -2 and 2: A z-score between -2 and 2 indicates that the data point is within two standard deviations of the mean. It's within a range that includes a substantial portion of the distribution.

  10. Z-Score between -3 and 3: A z-score between -3 and 3 suggests that the data point is within three standard deviations of the mean. It covers the majority of the distribution's data points.

Remember that the interpretation of z-scores depends on the specific distribution of the data. In a normal distribution, approximately 68% of data falls within one standard deviation of the mean, around 95% within two standard deviations, and about 99.7% within three standard deviations.

In summary, z-scores provide a way to express data points in terms of their distance from the mean, making it easier to understand their relative positions and relationships within a dataset.

Z-scores and our Data¶

Recall that there are many columns whose labels are pre-pended with "Z". These column values are the z-scores of the participant with respect to that trait. For example if the subject has a z-score of 0 for label ders_total, which recall refers to DERS total score (Difficulties in Emotion Regulation Scale), then that person would have had the average/mean value for that particular psychometric.

In [7]:
## Gathering Column Names


column_names_tuple = tuple(insomnia_data.columns)

print(column_names_tuple)
print(len(column_names_tuple))
('ID', 'Group', 'SubGroup', 'Remote', 'Sex', 'Age', 'American_Indian', 'Asian', 'Native_Hawaiian', 'Black', 'White', 'unknown_Race', 'Hispanic', 'NotHispanic', 'unknown_Etnicity', 'PDS_FEMALE', 'PDS_MALE', 'ISI_total', 'PSQI_total', 'BDI_total', 'ASHS_total', 'ASHS_physiological', 'ASHS_cognitive', 'ASHS_emotional', 'ASHS_SleepEnvirnmont', 'ASHS_DaytimeSleep', 'ASHS_substances', 'ASHS_bedtimeRoutine', 'ASHS_sleepStability', 'ASHS_BedroomSharing', 'DBAS_total', 'FIRST_total', 'GCTI_total', 'GCTI_anxiety', 'GCTI_reflection', 'GCTI_worries', 'GCTI_thoughts', 'GCTI_negativeAffect', 'STAI_Y_total', 'NEO_neuroticism', 'NEO_extraversion', 'NEO_openness', 'NEO_agreeableness', 'NEO_Conscientiousness', 'MEQr_total', 'PSRS_PrR', 'PSRS_RWO', 'PSRS_RSC', 'PSRS_FRa', 'PSRS_RSE', 'PSRS_total', 'PSS_total', 'TCQI_R_Total', 'TCQIR_Aggressive_supression', 'TCQIR_cognitive_distraction', 'TCQIR_reappraisal', 'TCQIR_behavtioral_distraction', 'TCQIR_social_avoidance', 'TCQIR_worry', 'ACE_tot', 'asq_home', 'asq_school', 'asq_attendance', 'asq_romantic', 'asq_peer', 'asq_teacher', 'asq_future', 'asq_leisure', 'asq_finance', 'asq_responsibility', 'casq_total', 'casq_sleepy', 'casq_alert', 'cope_disengage_su', 'cope_growth', 'cope_disengage_mental', 'cope_emotions', 'cope_socialsupp_instr', 'cope_active', 'cope_denial', 'cope_religion', 'cope_humor', 'cope_disengage_emo', 'cope_restraint', 'cope_socialsupp_emo', 'cope_acccept', 'cope_suppression', 'cope_planning', 'ders_nonaccpetance', 'ders_total', 'ders_goals', 'ders_impulse', 'ders_awareness', 'ders_strategies', 'ders_clarity', 'Unnamed: 95', 'ZISI_total', 'ZPSQI_total', 'ZBDI_total', 'ZASHS_total', 'ZASHS_physiological', 'ZASHS_cognitive', 'ZASHS_emotional', 'ZASHS_SleepEnvirnmont', 'ZASHS_DaytimeSleep', 'ZASHS_substances', 'ZASHS_bedtimeRoutine', 'ZASHS_sleepStability', 'ZASHS_BedroomSharing', 'ZDBAS_total', 'ZFIRST_total', 'ZGCTI_total', 'ZGCTI_anxiety', 'ZGCTI_reflection', 'ZGCTI_worries', 'ZGCTI_thoughts', 'ZGCTI_negativeAffect', 'ZSTAI_Y_total', 'ZNEO_neuroticism', 'ZNEO_extraversion', 'ZNEO_openness', 'ZNEO_agreeableness', 'ZNEO_Conscientiousness', 'ZMEQr_total', 'ZPSRS_PrR', 'ZPSRS_RWO', 'ZPSRS_RSC', 'ZPSRS_FRa', 'ZPSRS_RSE', 'ZPSRS_total', 'ZPSS_total', 'ZTCQI_R_Total', 'ZTCQIR_Aggressive_supression', 'ZTCQIR_cognitive_distraction', 'ZTCQIR_reappraisal', 'ZTCQIR_behavtioral_distraction', 'ZTCQIR_social_avoidance', 'ZTCQIR_worry', 'ZACE_tot', 'Zasq_home', 'Zasq_school', 'Zasq_attendance', 'Zasq_romantic', 'Zasq_peer', 'Zasq_teacher', 'Zasq_future', 'Zasq_leisure', 'Zasq_finance', 'Zasq_responsibility', 'Zcasq_total', 'Zcasq_sleepy', 'Zcasq_alert', 'Zcope_growth', 'Zcope_disengage_mental', 'Zcope_emotions', 'Zcope_socialsupp_instr', 'Zcope_active', 'Zcope_denial', 'Zcope_religion', 'Zcope_humor', 'Zcope_disengage_emo', 'Zcope_restraint', 'Zcope_socialsupp_emo', 'Zcope_disengage_su', 'Zcope_acccept', 'Zcope_suppression', 'Zcope_planning', 'Zders_nonaccpetance', 'Zders_goals', 'Zders_impulse', 'Zders_awareness', 'Zders_strategies', 'Zders_clarity', 'ZDERS_total')
174

A Look at Some Correlations for All Races/Ethnicities¶

In [8]:
target_column = 'ISI_total'

# Calculate correlations with the chosen column
correlations = insomnia_data.corr()[target_column].sort_values(ascending=False)
pd.set_option('display.max_rows', 50)
print(correlations.head(100))
ISI_total              1.000000
ZISI_total             1.000000
ZPSQI_total            0.708189
PSQI_total             0.708189
SubGroup               0.692995
                         ...   
ZNEO_extraversion      0.039893
NEO_extraversion       0.039893
Zasq_responsibility    0.037892
American_Indian        0.032293
Asian                  0.029444
Name: ISI_total, Length: 100, dtype: float64
/var/folders/_t/065p0kv54nx2bk4jmqkrwzc40000gn/T/ipykernel_43629/1711950401.py:4: FutureWarning: The default value of numeric_only in DataFrame.corr is deprecated. In a future version, it will default to False. Select only valid columns or specify the value of numeric_only to silence this warning.
  correlations = insomnia_data.corr()[target_column].sort_values(ascending=False)
In [9]:
correlations_df = pd.DataFrame(correlations)

# Reset the index and add a column for variable names
correlations_df.reset_index(inplace=True)
correlations_df.columns = ['Variable', 'Correlation']

# Print the DataFrame with multiple columns
#print(correlations_df)
pd.set_option('display.max_columns', None)
df_t = correlations_df.T

print(df_t)
                   0           1            2           3         4    \
Variable     ISI_total  ZISI_total  ZPSQI_total  PSQI_total  SubGroup   
Correlation        1.0         1.0     0.708189    0.708189  0.692995   

                     5           6             7              8         9    \
Variable     ZGCTI_total  GCTI_total  GCTI_anxiety  ZGCTI_anxiety     Group   
Correlation     0.619535    0.619535      0.617297       0.617297  0.615157   

                   10          11           12            13   \
Variable     BDI_total  ZBDI_total  FIRST_total  ZFIRST_total   
Correlation   0.596929    0.596929     0.523398      0.523398   

                         14                15                 16   \
Variable     GCTI_reflection  ZGCTI_reflection  NEO_agreeableness   
Correlation         0.509471          0.509471           0.465616   

                            17            18             19   \
Variable     ZNEO_agreeableness  GCTI_worries  ZGCTI_worries   
Correlation            0.465616      0.459035       0.459035   

                             20                    21        22          23   \
Variable     GCTI_negativeAffect  ZGCTI_negativeAffect    Remote  asq_school   
Correlation             0.458402              0.458402  0.453848    0.407773   

                     24          25           26              27   \
Variable     Zasq_school  asq_future  Zasq_future  ZGCTI_thoughts   
Correlation     0.407773     0.38315      0.38315        0.352051   

                       28           29            30            31   \
Variable     GCTI_thoughts  casq_sleepy  Zcasq_sleepy  ZTCQIR_worry   
Correlation       0.352051     0.316141      0.316141       0.30236   

                     32            33           34          35           36   \
Variable     TCQIR_worry  Zasq_leisure  asq_leisure  casq_alert  Zcasq_alert   
Correlation      0.30236      0.301567     0.301567    0.292942     0.292942   

                         37              38           39            40   \
Variable     Zasq_attendance  asq_attendance  asq_teacher  Zasq_teacher   
Correlation         0.286191        0.286191      0.28059       0.28059   

                       41            42                      43   \
Variable     ZTCQI_R_Total  TCQI_R_Total  TCQIR_social_avoidance   
Correlation       0.275811      0.275811                0.222331   

                                 44                             45   \
Variable     ZTCQIR_social_avoidance  TCQIR_behavtioral_distraction   
Correlation                 0.222331                       0.220245   

                                        46           47                  48   \
Variable     ZTCQIR_behavtioral_distraction  NotHispanic  ZTCQIR_reappraisal   
Correlation                        0.220245      0.21373             0.19261   

                           49        50         51            52   \
Variable     TCQIR_reappraisal  asq_peer  Zasq_peer  asq_romantic   
Correlation            0.19261  0.182992   0.182992      0.181919   

                       53               54                55   \
Variable     Zasq_romantic  NEO_neuroticism  ZNEO_neuroticism   
Correlation       0.181919         0.169643          0.169643   

                           56                      57                     58   \
Variable     cope_disengage_su  Zcope_socialsupp_instr  cope_socialsupp_instr   
Correlation           0.168497                0.165903               0.165903   

                        59             60        61         62   \
Variable     Zcope_planning  cope_planning  asq_home  Zasq_home   
Correlation        0.164836       0.164836  0.162166   0.162166   

                        63             64           65          66        67   \
Variable     Zcope_emotions  cope_emotions  Zders_goals  ders_goals  PSRS_RWO   
Correlation        0.155069       0.155069     0.125583    0.125583  0.120577   

                   68                     69                      70   \
Variable     ZPSRS_RWO  NEO_Conscientiousness  ZNEO_Conscientiousness   
Correlation   0.120577               0.116151                0.116151   

                     71            72                  73               74   \
Variable     cope_active  Zcope_active  Zcope_disengage_su  ASHS_substances   
Correlation     0.108338      0.108338            0.104242         0.103794   

                       75            76        77         78             79   \
Variable     Zcope_acccept  cope_acccept  PSRS_RSE  ZPSRS_RSE  ZNEO_openness   
Correlation       0.100861      0.100861  0.093433   0.093433       0.092483   

                      80                   81                    82   \
Variable     NEO_openness  cope_socialsupp_emo  Zcope_socialsupp_emo   
Correlation      0.092483              0.09132               0.09132   

                      83                     84                      85   \
Variable     ders_impulse  cope_disengage_mental  Zcope_disengage_mental   
Correlation      0.085062                0.07301                 0.07301   

                    86           87              88          89           90   \
Variable     cope_humor  Zcope_humor  Zcope_religion  casq_total  Zcasq_total   
Correlation    0.065751     0.065751        0.062734    0.062725     0.062725   

                       91                92                   93   \
Variable     Zders_impulse  ZASHS_substances  ASHS_bedtimeRoutine   
Correlation       0.058432          0.050481             0.040162   

                              94                 95                96   \
Variable     ZASHS_bedtimeRoutine  ZNEO_extraversion  NEO_extraversion   
Correlation              0.040162           0.039893          0.039893   

                             97               98        99        100  \
Variable     Zasq_responsibility  American_Indian     Asian     White   
Correlation             0.037892         0.032293  0.029444  0.028738   

                                      101                          102  \
Variable     ZTCQIR_Aggressive_supression  TCQIR_Aggressive_supression   
Correlation                      0.026792                     0.026792   

                         103          104           105                 106  \
Variable     Native_Hawaiian  cope_denial  Zcope_denial  ders_nonaccpetance   
Correlation         0.022713     0.019374      0.019374            0.017677   

                             107          108           109               110  \
Variable     Zders_nonaccpetance  cope_growth  Zcope_growth  Zders_strategies   
Correlation             0.017677     0.017521      0.017521          0.012895   

                         111                  112                 113  \
Variable     ders_strategies  Zcope_disengage_emo  cope_disengage_emo   
Correlation         0.012895             0.008314            0.008314   

                          114                115          116         117  \
Variable     cope_suppression  Zcope_suppression  asq_finance  PSRS_total   
Correlation          0.006285           0.006285     0.002789    -0.00443   

                     118             119              120           121  \
Variable     ZPSRS_total  cope_restraint  Zcope_restraint  Zasq_finance   
Correlation     -0.00443       -0.013747        -0.013747      -0.03327   

                  122                  123          124         125  \
Variable        Black  ASHS_BedroomSharing  ZDERS_total  ders_total   
Correlation -0.040749            -0.050997    -0.063225   -0.063225   

                            126         127          128       129        130  \
Variable     asq_responsibility  MEQr_total  ZMEQr_total  PSRS_RSC  ZPSRS_RSC   
Correlation           -0.065147   -0.069157    -0.069157 -0.072064  -0.072064   

                                     131                           132  \
Variable     TCQIR_cognitive_distraction  ZTCQIR_cognitive_distraction   
Correlation                    -0.075808                     -0.075808   

                  133                   134       135        136       137  \
Variable      ACE_tot  ZASHS_BedroomSharing  PSRS_PrR  ZPSRS_PrR  ZACE_tot   
Correlation -0.079921             -0.082231 -0.085338  -0.085338 -0.088105   

                      138            139            140           141  \
Variable     STAI_Y_total  ZSTAI_Y_total  Zders_clarity  ders_clarity   
Correlation     -0.102072      -0.102072      -0.106103     -0.106103   

                   142         143      144                    145  \
Variable     PSS_total  ZPSS_total      Sex  ZASHS_SleepEnvirnmont   
Correlation   -0.11328    -0.11328 -0.11725              -0.125915   

                              146       147        148         149  \
Variable     ASHS_SleepEnvirnmont  PSRS_FRa  ZPSRS_FRa  PDS_FEMALE   
Correlation             -0.125915  -0.16801   -0.16801    -0.18813   

                              150                  151             152  \
Variable     ZASHS_sleepStability  ASHS_sleepStability  ders_awareness   
Correlation             -0.223113            -0.223113       -0.224974   

                         153                154                 155       156  \
Variable     Zders_awareness  ASHS_DaytimeSleep  ZASHS_DaytimeSleep  Hispanic   
Correlation        -0.224974          -0.227422           -0.227422 -0.235089   

                  157       158             159              160         161  \
Variable          Age  PDS_MALE  ASHS_emotional  ZASHS_emotional  ASHS_total   
Correlation -0.291307 -0.339504       -0.374654         -0.37492   -0.416037   

                     162              163             164           165  \
Variable     ZASHS_total  ZASHS_cognitive  ASHS_cognitive  unknown_Race   
Correlation    -0.416075        -0.452816       -0.452829           NaN   

                          166          167  
Variable     unknown_Etnicity  Unnamed: 95  
Correlation               NaN          NaN  

Highest Positive Correlations with ISI_total Identified for Total Population¶

We see that these are:

  1. ZPSQI_total:Zscore for PSQI_total,PSQI total (Pittsburgh sleep quality index )
  2. PSQI_total:PSQI_total,PSQI total (Pittsburgh sleep quality index )
  3. SubGroup (the other group)
  4. ZGCTI_total
  5. GCTI_total
  6. GCTI_anxiety
  7. ZGCTI_anxiety

    4-7 all being related to anxiety tell us that the it's reasonable to guess that anxiety is the number one cause.

As we can see (trivially) the ISI_total column and ZISIT_total column give a perfect correlation. More interestingly is that PSQI

Finding Negative or Lesser Correlations¶

As I pondered the data I wondered if any of these other factors that seems associated to "coping mechanisms" or other factors that might help alleviate insomnia or general mood correlate negatively. If they do then one might recommend those to patients.

In [10]:
correlations = insomnia_data.corr()[target_column].sort_values(ascending=True)

print(correlations)
ASHS_cognitive     -0.452829
ZASHS_cognitive    -0.452816
ZASHS_total        -0.416075
ASHS_total         -0.416037
ZASHS_emotional    -0.374920
                      ...   
ZISI_total          1.000000
ISI_total           1.000000
unknown_Race             NaN
unknown_Etnicity         NaN
Unnamed: 95              NaN
Name: ISI_total, Length: 168, dtype: float64
/var/folders/_t/065p0kv54nx2bk4jmqkrwzc40000gn/T/ipykernel_43629/1530805420.py:1: FutureWarning: The default value of numeric_only in DataFrame.corr is deprecated. In a future version, it will default to False. Select only valid columns or specify the value of numeric_only to silence this warning.
  correlations = insomnia_data.corr()[target_column].sort_values(ascending=True)

Unsurprisingly we see members of the ASH metrics showing up. What's interesting is the relative (perhaps) importance of them in helping alleviate insomnia.

It is the cognitive "Adolescent Sleep Hygiene Scale" that correlate most negatively with insomnia.

Visualizing Correlations¶

In [11]:
#Let's select some interesting features
features_study1 =['Age','ISI_total','ASHS_total','PSQI_total']

subdf_one_1=insomnia_data[features_study1]


sns.pairplot(subdf_one_1)
plt.show()

There seems to be some correlation between Age and ders_awareness. I also see something of a linear correlation perhaps, this time between ASHS_total and ISI_total. What's interesting is that in the latter case it seems to correlate negatively.

A Special Look at Hispanics and A Comparison With Asians¶

Let's take a look at the potential correlations between being Hispanic and the various disorders. First we take a look at females (indicated by a 0 in the sex column of the dataframe).

In [13]:
## Starbucks

columns_hispanic_1 =['Age','ISI_total','ASHS_total','PSQI_total']

# Get only entries where hispanic is set to 1


subdf = insomnia_data[insomnia_data['Hispanic'] == 0]


subdf_hisp_1=subdf[columns_hispanic_1]

subdf_hisp_1.head()


sns.pairplot(subdf_hisp_1)
plt.show()
    

Next let's take a look at males.

In [14]:
columns_hispanic_1 =['Age','ISI_total','ASHS_total','PSQI_total']



subdf= insomnia_data[(insomnia_data['Hispanic']==1) & (insomnia_data['Sex'] ==1)]


subdf_hispanic_1=insomnia_data[columns_hispanic_1]

subdf_hispanic_1.head()


sns.pairplot(subdf_hispanic_1)
plt.show()

Observations

It looks like for both genders there's something of a correlation between Age and ders_awareness.

That could imply that for either Hispanics or people in general there's some measurable increase in this features as one ages. Let's continue looking at these features in this way but this time for Asian populations.

In [15]:
columns_asian_1 =['Age','ISI_total','ASHS_total','PSQI_total']

subdf = insomnia_data[insomnia_data['Asian'] == 1]



subdf_asian_1=insomnia_data[columns_asian_1]

subdf_hisp_1.head()


sns.pairplot(subdf_asian_1)
plt.show()

Asian Scores Based on Gender¶

Males

In [16]:
### Breaking Down With Respect to Gender

#selected_rows = df[(df['Age'] > 25) & (df['Score'] >= 80)]

## Starbucks

columns_asian_1=['Age','ASHS_total','ISI_total','ders_awareness']



subdf= insomnia_data[(insomnia_data['Asian']==1) & (insomnia_data['Sex'] ==1)]


subdf_asian_1=insomnia_data[columns_asian_1]

subdf_hisp_1.head()


sns.pairplot(subdf_asian_1)
plt.show()

Females

In [17]:
### Breaking Down With Respect to Gender

#selected_rows = df[(df['Age'] > 25) & (df['Score'] >= 80)]

## Starbucks

columns_asian_1=['Age','ASHS_total','ISI_total','ders_awareness']



subdf=insomnia_data[(insomnia_data['Asian']==1) & (insomnia_data['Sex'] ==0)]


subdf_asian_1=insomnia_data[columns_asian_1]

subdf_hisp_1.head()


sns.pairplot(subdf_asian_1)
plt.show()
In [18]:
## Plotting Together:

columns_asian_1=['Sex','Age','ASHS_total','ISI_total','ders_awareness']


subdfAsian= insomnia_data[(insomnia_data['Asian']==1)]


subdfAsian = subdfAsian[columns_asian_1]

print(subdf_one_1['Age'])

sns.scatterplot(data=subdfAsian, x='Age', y='ISI_total', hue='Sex', style='Sex')
plt.title('Scatter Plot with Different Colors and Markers')
plt.xlabel('Age')
plt.ylabel('ISI_total')
plt.legend(title='Category')
plt.show()
0     19.3
1     19.3
2     18.8
3     18.8
4     19.6
      ... 
90    16.9
91    16.6
92    17.3
93    16.8
94    16.7
Name: Age, Length: 95, dtype: float64
In [19]:
correlation_matrix = subdfAsian.corr()
print(correlation_matrix)
                     Sex       Age  ASHS_total  ISI_total  ders_awareness
Sex             1.000000 -0.277602    0.027418  -0.336290        0.106390
Age            -0.277602  1.000000    0.061980  -0.283078        0.362403
ASHS_total      0.027418  0.061980    1.000000  -0.456341       -0.120614
ISI_total      -0.336290 -0.283078   -0.456341   1.000000       -0.109638
ders_awareness  0.106390  0.362403   -0.120614  -0.109638        1.000000

We seem to see something like a normal distribution at the left bottom corner.

Conclusions and Future Directions¶

Conclusions

  1. As we saw anxiety has the highest correlation with a high insomnia severity index;
  2. On the other hand Cognitive tools have the highest negative correlation.

Therefore it stands to reason that perhaps the mental emotional landscape is even more important that the (at least for the sampled subjects) physical factors.

Future Directions

In Part 2 we will explore:

  1. Linear Regressions and other models for predicting ISI_total
  2. Is there a peak at around 18 years old? Is it true for all age groups?
  3. Which groups of people were most represented and what implications might that have for the study?
In [20]:
#individual histogram

import matplotlib.pyplot as plt

# Histogram for 'Age'
plt.figure(figsize=(10, 6))
plt.hist(insomnia_data['Age'].dropna(), bins=20, color='skyblue', edgecolor='black')
plt.title('Distribution of Ages')
plt.xlabel('Age')
plt.ylabel('Frequency')
plt.show()
In [21]:
# Histogram for 'ISI_total'

#individual histogram

plt.figure(figsize=(10, 6))
plt.hist(insomnia_data['ISI_total'].dropna(), bins=20, color='skyblue', edgecolor='black')
plt.title('Distribution of Insomnia Severity Index Total Scores')
plt.xlabel('ISI_total')
plt.ylabel('Frequency')
plt.show()
In [22]:
# Histogram for 'PSQI_total'

#individual histogram

plt.figure(figsize=(10, 6))
plt.hist(insomnia_data['PSQI_total'].dropna(), bins=20, color='skyblue', edgecolor='black')
plt.title('Distribution of Pittsburgh Sleep Quality Index Total Scores')
plt.xlabel('PSQI_total')
plt.ylabel('Frequency')
plt.show()
In [23]:
# Histogram for 'BDI_total'
#individual histogram

plt.figure(figsize=(10, 6))
plt.hist(insomnia_data['BDI_total'].dropna(), bins=20, color='skyblue', edgecolor='black')
plt.title('Distribution of Beck Depression Inventory Total Scores')
plt.xlabel('BDI_total')
plt.ylabel('Frequency')
plt.show()

Appendix:¶

Herein we will include a random assortment of associated topics that support the overall notebook. I am open to suggestions!

In [24]:
## The Data Sets

pd.set_option("display.max_rows", None)

#print(insomnia_data_dictionary)

type(insomnia_data_dictionary)

insomnia_data_dictionary.shape# not callable so no parentheses

#display(insomnia_data_dictionary)


dict_data = insomnia_data_dictionary.to_dict(orient="dict")

print(dict_data)
{'Columns': {0: 'Group', 1: 'SubGroup', 2: 'Remote', 3: 'Sex', 4: 'Age', 5: 'American_Indian', 6: 'Asian', 7: 'Native_Hawaiian', 8: 'Black', 9: 'White', 10: 'unknown_Race', 11: 'Hispanic', 12: 'NotHispanic', 13: 'unknown_Etnicity', 14: 'PDS_FEMALE', 15: 'PDS_MALE', 16: 'ISI_total', 17: 'PSQI_total', 18: 'BDI_total', 19: 'ASHS_total', 20: 'ASHS_physiological', 21: 'ASHS_cognitive', 22: 'ASHS_emotional', 23: 'ASHS_SleepEnvirnmont', 24: 'ASHS_DaytimeSleep', 25: 'ASHS_substances', 26: 'ASHS_bedtimeRoutine', 27: 'ASHS_sleepStability', 28: 'ASHS_BedroomSharing', 29: 'DBAS_total', 30: 'FIRST_total', 31: 'GCTI_total', 32: 'GCTI_anxiety', 33: 'GCTI_reflection', 34: 'GCTI_worries', 35: 'GCTI_thoughts', 36: 'GCTI_negativeAffect', 37: 'STAI_Y_total', 38: 'NEO_neuroticism', 39: 'NEO_extraversion', 40: 'NEO_openness', 41: 'NEO_agreeableness', 42: 'NEO_Conscientiousness', 43: 'MEQr_total', 44: 'PSRS_PrR', 45: 'PSRS_RWO', 46: 'PSRS_RSC', 47: 'PSRS_FRa', 48: 'PSRS_RSE', 49: 'PSRS_total', 50: 'PSS_total', 51: 'TCQI_R_Total', 52: 'TCQIR_Aggressive_supression', 53: 'TCQIR_cognitive_distraction', 54: 'TCQIR_reappraisal', 55: 'TCQIR_behavtioral_distraction', 56: 'TCQIR_social_avoidance', 57: 'TCQIR_worry', 58: 'ACE_tot', 59: 'asq_home', 60: 'asq_school', 61: 'asq_attendance', 62: 'asq_romantic', 63: 'asq_peer', 64: 'asq_teacher', 65: 'asq_future', 66: 'asq_leisure', 67: 'asq_finance', 68: 'asq_responsibility', 69: 'casq_total', 70: 'casq_sleepy', 71: 'casq_alert', 72: 'cope_growth', 73: 'cope_disengage_mental', 74: 'cope_emotions', 75: 'cope_socialsupp_instr', 76: 'cope_active', 77: 'cope_denial', 78: 'cope_religion', 79: 'cope_humor', 80: 'cope_disengage_emo', 81: 'cope_restraint', 82: 'cope_socialsupp_emo', 83: 'cope_disengage_su', 84: 'cope_substance_use', 85: 'cope_acccept', 86: 'cope_suppression', 87: 'cope_planning', 88: 'ders_nonaccpetance', 89: 'ders_total', 90: 'ders_goals', 91: 'ders_impulse', 92: 'ders_awareness', 93: 'ders_strategies', 94: 'ders_clarity'}, 'Description': {0: 'INSOMNIA= 1, CONTROL=0', 1: 'clean INSOMNIA= 2, subclinical INSOMNIA = 1, CONTROL = 0', 2: 'Remote data collection = 1, In person data collection = 0', 3: 'MALE = 1, FEMALE = 0', 4: 'Years', 5: 'race', 6: 'race', 7: 'race', 8: 'race', 9: 'race', 10: 'race', 11: 'ethnicity', 12: 'ethnicity', 13: 'ethnicity', 14: 'Pubertal Development Scale  for FEMALES', 15: 'Pubertal Development Scale for MALES', 16: 'ISI total (Insomnia severity index )', 17: 'PSQI total (Pittsburgh sleep quality index )', 18: 'BDI-II Total Score (Becks Depression inventory)', 19: 'ASHS Total (Adolescent Sleep Hygiene Scale)', 20: 'ASHS - Physiological Domain (Adolescent Sleep Hygiene Scale)', 21: 'ASHS - Cognitive Domain (Adolescent Sleep Hygiene Scale)', 22: 'ASHS - Emotional Domain (Adolescent Sleep Hygiene Scale)', 23: 'ASHS - Sleep Environment (Adolescent Sleep Hygiene Scale)', 24: 'ASHS - Daytime Sleep (Adolescent Sleep Hygiene Scale)', 25: 'ASHS - Substances (Adolescent Sleep Hygiene Scale)', 26: 'ASHS - Bedtime Routine (Adolescent Sleep Hygiene Scale)', 27: 'ASHS - Sleep Stability (Adolescent Sleep Hygiene Scale)', 28: 'ASHS - Bed / Bedroom sharing (Adolescent Sleep Hygiene Scale)', 29: 'DBAS Total Score (Dysfunctional Beliefs and Attitudes about Sleep)', 30: 'FIRST Total Score (Ford insomnia Response to Stress Test)', 31: 'GCTI Total Score (The Glasgow Content of Thoughts Inventory)', 32: 'GCTI Sleep Related Anxiety (The Glasgow Content of Thoughts Inventory)', 33: 'GCTI Reflection and Planning (The Glasgow Content of Thoughts Inventory)', 34: 'GCTI General Worries (The Glasgow Content of Thoughts Inventory)', 35: 'GCTI Thoughts About the Environment (The Glasgow Content of Thoughts Inventory)', 36: 'GCTI Negative Affect (The Glasgow Content of Thoughts Inventory)', 37: 'STAI Y-2 Total Score (State-Trait Anxiety Inventory )', 38: 'Neuroticism', 39: 'Extroversion', 40: 'Openness', 41: 'Agreeableness', 42: 'Conscientiousness', 43: 'MEQr Total (The Morningness-Eveningness Questionnaire )', 44: 'PSRS Prolonged Reactivity (PrR) (Perceived Stress Reactivity Scale)', 45: 'PSRS Reactivity to Work Overload (RWO) (Perceived Stress Reactivity Scale)', 46: 'PSRS Reactivity to Social Conflict (RSC) (Perceived Stress Reactivity Scale)', 47: 'PSRS Reactivity to Failure (RFa) (Perceived Stress Reactivity Scale)', 48: 'PSRS Reactivity to Social Evaluation (RSE) (Perceived Stress Reactivity Scale)', 49: 'Perceived Stress Reactivity Total Score (PSRS-tot)', 50: 'PSS Total Score (Perceived stress scale)', 51: 'TCQI-R Total Score (Thought Control Questionnaire Insomnia)', 52: 'Aggressive Suppression TCQI-R (Thought Control Questionnaire Insomnia)', 53: 'Cognitive Distraction / Suppression TCQI-R (Thought Control Questionnaire Insomnia)', 54: 'Reappraisal TCQI-R (Thought Control Questionnaire Insomnia)', 55: 'Behavioral Distraction / Suppression TCQI-R (Thought Control Questionnaire Insomnia)', 56: 'Social Avoidance TCQI-R (Thought Control Questionnaire Insomnia)', 57: 'Worry TCQI-R (Thought Control Questionnaire Insomnia)', 58: 'ACE Total (The Adverse Childhood Experiences )', 59: 'Stress of Home Life ASQ (Adolescent Stress Questionnaire)', 60: 'Stress of School Performance ASQ (Adolescent Stress Questionnaire)', 61: 'Stress of School Attendance ASQ (Adolescent Stress Questionnaire)', 62: 'Stress of Romantic Relationships ASQ (Adolescent Stress Questionnaire)', 63: 'Stress of Peer Pressure ASQ (Adolescent Stress Questionnaire)', 64: 'Stress of Teacher Interaction ASQ (Adolescent Stress Questionnaire)', 65: 'Stress of Future Uncertainty ASQ (Adolescent Stress Questionnaire)', 66: 'Stress of School / Leisure Conflict ASQ (Adolescent Stress Questionnaire)', 67: 'Stress of Financial Pressure ASQ (Adolescent Stress Questionnaire)', 68: 'Stress of Emerging Adult Responsibility ASQ (Adolescent Stress Questionnaire)', 69: 'Total CASQ Score (Cleveland Adolescent Sleepiness Questionnaire)', 70: 'Sleepiness Statements CASQ (Cleveland Adolescent Sleepiness Questionnaire)', 71: 'Alertness Statements CASQ (Cleveland Adolescent Sleepiness Questionnaire)', 72: 'Positive Reinterpretation & Growth COPE (Coping skills)', 73: 'Mental Disengagement COPE  (Coping skills)', 74: 'Focus on & Venting of Emotions COPE  (Coping skills)', 75: 'Seeking Social Support - Instrumental COPE  (Coping skills)', 76: 'Active Coping COPE  (Coping skills)', 77: 'Denial COPE  (Coping skills)', 78: 'Turning to Religion COPE  (Coping skills)', 79: 'Humor COPE  (Coping skills)', 80: 'Behavioral Disengagement COPE (Coping skills)', 81: 'Restraint Coping COPE  (Coping skills)', 82: 'Seeking Social Support - Emotional COPE (Coping skills)', 83: 'Substance Use', 84: 'Substance Use COPE (Coping skills)', 85: 'Acceptance COPE (Coping skills)', 86: 'Suppression of Competing Activities COPE (Coping skills)', 87: 'Planning COPE (Coping skills)', 88: 'DERS Nonacceptance of Emotional Responses (NONACCEPTANCE) (Difficulties in Emotion Regulation Scale)', 89: 'DERS total score (Difficulties in Emotion Regulation Scale)', 90: 'DERS Difficulties Engaging in Goal-Directed Behavior (GOALS) (Difficulties in Emotion Regulation Scale)', 91: 'DERS Impulse control difficulties (IMPULSE) (Difficulties in Emotion Regulation Scale)', 92: 'DERS Lack of Emotional Awareness (AWARENESS) (Difficulties in Emotion Regulation Scale)', 93: 'DERS Limited Access to Emotion Regulation Strategies (STRATEGIES) (Difficulties in Emotion Regulation Scale)', 94: 'DERS Lack of Emotional Clarity (CLARITY) (Difficulties in Emotion Regulation Scale)'}}
In [25]:
print(insomnia_item_level_data)
   Unnamed: 0              Pittsburgh Sleep Quality Index (PSQI)  \
0         NaN  During the past month, what time have you usua...   
1   Record ID                                              psqi1   
2     sub_001                                               2200   
3     sub_002                                               2200   
4     sub_003                                               2300   
5     sub_004                                               2330   
6     sub_005                                               2230   
7     sub_006                                               2230   
8     sub_007                                               2330   
9     sub_008                                               2230   
10    sub_009                                                 30   
11    sub_010                                                  0   
12    sub_011                                               2300   
13    sub_012                                                  0   
14    sub_013                                                  0   
15    sub_014                                               2300   
16    sub_015                                                 30   
17    sub_016                                                100   
18    sub_017                                               2300   
19    sub_018                                               2330   
20    sub_019                                                  0   
21    sub_020                                               2330   
22    sub_021                                                  0   
23    sub_022                                               2300   
24    sub_023                                                  0   
25    sub_024                                                  0   
26    sub_025                                               2200   
27    sub_026                                               2230   
28    sub_027                                                  0   
29    sub_028                                               2130   
30    sub_029                                                  0   
31    sub_030                                               2330   
32    sub_031                                               2230   
33    sub_032                                               2130   
34    sub_033                                                100   
35    sub_034                                                100   
36    sub_035                                               2200   
37    sub_036                                               2330   
38    sub_037                                               2300   
39    sub_038                                               2330   
40    sub_039                                                 30   
41    sub_040                                               2130   
42    sub_041                                                 30   
43    sub_042                                                 30   
44    sub_043                                               2330   
45    sub_044                                                  0   
46    sub_045                                               2300   
47    sub_046                                               2300   
48    sub_047                                                100   
49    sub_048                                               2300   
50    sub_049                                               2300   
51    sub_050                                               2330   
52    sub_051                                               2300   
53    sub_052                                               2330   
54    sub_053                                               2300   
55    sub_054                                                 30   
56    sub_055                                               2300   
57    sub_056                                                  0   
58    sub_057                                                200   
59    sub_058                                                100   
60    sub_059                                                100   
61    sub_060                                                200   
62    sub_061                                               2330   
63    sub_062                                               2330   
64    sub_063                                               2300   
65    sub_064                                                100   
66    sub_065                                                230   
67    sub_066                                                  0   
68    sub_067                                                200   
69    sub_068                                               2200   
70    sub_069                                               2300   
71    sub_070                                                100   
72    sub_071                                                130   
73    sub_072                                                100   
74    sub_073                                                130   
75    sub_074                                                  0   
76    sub_075                                                  0   
77    sub_076                                               2330   
78    sub_077                                                200   
79    sub_078                                                  0   
80    sub_079                                               2330   
81    sub_080                                               2300   
82    sub_081                                               2230   
83    sub_082                                               2330   
84    sub_083                                                  0   
85    sub_084                                                 30   
86    sub_085                                               2330   
87    sub_086                                               2330   
88    sub_087                                                 30   
89    sub_088                                                100   
90    sub_089                                                 30   
91    sub_090                                                  0   
92    sub_091                                               2300   
93    sub_092                                                  0   
94    sub_093                                               2300   
95    sub_094                                               2200   
96    sub_095                                                100   

              Pittsburgh Sleep Quality Index (PSQI).1  \
0   During the past month, how long (in minutes) h...   
1                                               psqi2   
2                                                  10   
3                                                  10   
4                                                  45   
5                                                  20   
6                                                  30   
7                                                  35   
8                                                  10   
9                                                  15   
10                                                 45   
11                                                 10   
12                                                 30   
13                                                 18   
14                                                 15   
15                                                 15   
16                                                 15   
17                                                 20   
18                                                 15   
19                                                 10   
20                                                 15   
21                                                 30   
22                                                 30   
23                                                 30   
24                                                 30   
25                                                 20   
26                                                 15   
27                                                 25   
28                                                  5   
29                                                 15   
30                                                  5   
31                                                 20   
32                                                 15   
33                                                 60   
34                                                 10   
35                                                 35   
36                                                 60   
37                                                 60   
38                                                 12   
39                                                 17   
40                                                 10   
41                                                 10   
42                                                  5   
43                                                  0   
44                                                 10   
45                                                 10   
46                                                 20   
47                                                 10   
48                                                 20   
49                                                  5   
50                                                  5   
51                                                 10   
52                                                 25   
53                                                 30   
54                                                 27   
55                                                  7   
56                                                 20   
57                                                 10   
58                                                  0   
59                                                 17   
60                                                 15   
61                                                 45   
62                                                 30   
63                                                 30   
64                                                 45   
65                                                  5   
66                                                 30   
67                                                 30   
68                                                 60   
69                                                 90   
70                                                 10   
71                                                 25   
72                                                 10   
73                                                 45   
74                                                 20   
75                                                 60   
76                                                 60   
77                                                 60   
78                                                 60   
79                                                 60   
80                                                 30   
81                                                 20   
82                                                 15   
83                                                 60   
84                                                 30   
85                                                 60   
86                                                 20   
87                                                 35   
88                                                 30   
89                                                 45   
90                                                 45   
91                                                 30   
92                                                 60   
93                                                 15   
94                                                 45   
95                                                 35   
96                                                 15   

              Pittsburgh Sleep Quality Index (PSQI).2  \
0   During the past month, what time have you usua...   
1                                               psqi3   
2                                                 700   
3                                                 500   
4                                                 730   
5                                                 730   
6                                                 630   
7                                                 730   
8                                                 830   
9                                                 930   
10                                                730   
11                                                800   
12                                                630   
13                                                800   
14                                                730   
15                                                700   
16                                                730   
17                                                700   
18                                                730   
19                                                730   
20                                                700   
21                                                830   
22                                                700   
23                                                730   
24                                                600   
25                                                730   
26                                                700   
27                                                630   
28                                                730   
29                                                630   
30                                                700   
31                                                800   
32                                                700   
33                                                700   
34                                                800   
35                                                800   
36                                                430   
37                                                700   
38                                               1030   
39                                                700   
40                                                730   
41                                                500   
42                                                800   
43                                                730   
44                                                800   
45                                                800   
46                                                730   
47                                                730   
48                                               1000   
49                                                700   
50                                                700   
51                                                630   
52                                                600   
53                                                830   
54                                                700   
55                                                700   
56                                                730   
57                                                700   
58                                                630   
59                                                730   
60                                                730   
61                                                800   
62                                                730   
63                                                700   
64                                                700   
65                                               1000   
66                                               1300   
67                                                930   
68                                               1000   
69                                                930   
70                                                800   
71                                               1000   
72                                               1030   
73                                                700   
74                                               1030   
75                                                900   
76                                                900   
77                                                800   
78                                                900   
79                                                800   
80                                                500   
81                                                800   
82                                                630   
83                                                830   
84                                                900   
85                                                900   
86                                                930   
87                                                800   
88                                                730   
89                                               1000   
90                                                830   
91                                                800   
92                                                800   
93                                                830   
94                                                730   
95                                                700   
96                                                700   

              Pittsburgh Sleep Quality Index (PSQI).3  \
0   How much time (in minutes) do you usually spen...   
1                                             psqi_4a   
2                                                  15   
3                                                  10   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   5   
9                                                   0   
10                                                  0   
11                                                  5   
12                                                 60   
13                                                 15   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  3   
18                                                  0   
19                                                  0   
20                                                 30   
21                                                 10   
22                                                  5   
23                                                 30   
24                                                 10   
25                                                  0   
26                                                 45   
27                                                 60   
28                                                  0   
29                                                  0   
30                                                 10   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                 20   
35                                                 30   
36                                                  0   
37                                                120   
38                                                  0   
39                                                 10   
40                                                  0   
41                                                 15   
42                                                  1   
43                                                 30   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                1.5   
48                                                  0   
49                                                  0   
50                                                  5   
51                                                  0   
52                                                  0   
53                                                  5   
54                                                  0   
55                                                  5   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                 60   
62                                                 10   
63                                                 45   
64                                                 20   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  5   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                 10   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                 20   
79                                                 20   
80                                                  0   
81                                                 30   
82                                                  0   
83                                                 20   
84                                                  0   
85                                                  0   
86                                                  1   
87                                                  0   
88                                                  0   
89                                                 45   
90                                                  0   
91                                                 10   
92                                                  0   
93                                                 15   
94                                                 30   
95                                                 45   
96                                                  0   

              Pittsburgh Sleep Quality Index (PSQI).4  \
0   During the past month, how many hours of actua...   
1                                               psqi4   
2                                                 8.5   
3                                                   7   
4                                                   8   
5                                                   7   
6                                                   7   
7                                                   9   
8                                                   8   
9                                                   9   
10                                                5.5   
11                                                7.5   
12                                                  7   
13                                                7.5   
14                                                  7   
15                                                7.5   
16                                               6.45   
17                                                  5   
18                                                  8   
19                                                7.5   
20                                                6.5   
21                                                  8   
22                                               6.45   
23                                                7.5   
24                                                5.5   
25                                                  7   
26                                                  8   
27                                                7.5   
28                                                7.5   
29                                                7.5   
30                                                7.5   
31                                                  8   
32                                                8.5   
33                                                  7   
34                                                  7   
35                                                  6   
36                                                5.5   
37                                                4.5   
38                                                9.5   
39                                                6.5   
40                                                  6   
41                                                6.5   
42                                                7.5   
43                                                6.5   
44                                                  8   
45                                                6.5   
46                                                  8   
47                                                  7   
48                                                  8   
49                                                6.5   
50                                                  6   
51                                                6.5   
52                                                5.5   
53                                                  8   
54                                               7.25   
55                                                  5   
56                                                  8   
57                                                  6   
58                                                3.5   
59                                                  7   
60                                                  6   
61                                                4.5   
62                                                  7   
63                                                  7   
64                                                  6   
65                                                  9   
66                                                8.5   
67                                                  8   
68                                                  8   
69                                                6.5   
70                                                8.5   
71                                                  9   
72                                                  8   
73                                                  6   
74                                                  9   
75                                                  7   
76                                                  8   
77                                                  7   
78                                                6.5   
79                                                  7   
80                                                  5   
81                                                  8   
82                                                7.5   
83                                                  7   
84                                                6.5   
85                                                5.5   
86                                                  9   
87                                                7.5   
88                                                6.5   
89                                                7.5   
90                                                  8   
91                                                  7   
92                                                7.5   
93                                                7.5   
94                                                  7   
95                                                7.5   
96                                                  6   

              Pittsburgh Sleep Quality Index (PSQI).5  \
0   Cannot get to sleep within 30 minutes (0=Not d...   
1                                    psqi_set1_psqi5a   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   3   
8                                                   0   
9                                                   2   
10                                                  2   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  2   
16                                                  1   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  1   
22                                                  0   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  2   
28                                                  1   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  2   
35                                                  2   
36                                                  3   
37                                                  3   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  0   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  0   
48                                                  3   
49                                                  0   
50                                                  0   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  2   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  3   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  0   
66                                                  1   
67                                                  2   
68                                                  3   
69                                                  3   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  3   
74                                                  1   
75                                                  2   
76                                                  3   
77                                                  3   
78                                                  2   
79                                                  3   
80                                                  2   
81                                                  1   
82                                                  0   
83                                                  3   
84                                                  1   
85                                                  3   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  3   
92                                                  2   
93                                                  2   
94                                                  2   
95                                                  3   
96                                                  1   

              Pittsburgh Sleep Quality Index (PSQI).6  \
0   Wake up in the middle of the night or early mo...   
1                                    psqi_set1_psqi5b   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   1   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   2   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  2   
22                                                  0   
23                                                  2   
24                                                  2   
25                                                  1   
26                                                  3   
27                                                  3   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  2   
36                                                  0   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  1   
45                                                  0   
46                                                  1   
47                                                  0   
48                                                  2   
49                                                  1   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  2   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  2   
70                                                  2   
71                                                  1   
72                                                  0   
73                                                  1   
74                                                  2   
75                                                  0   
76                                                  0   
77                                                  1   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  2   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  0   
86                                                  3   
87                                                  1   
88                                                  0   
89                                                  3   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  2   
95                                                  2   
96                                                  0   

              Pittsburgh Sleep Quality Index (PSQI).7  \
0   Have to get up to use the bathroom (0=Not duri...   
1                                    psqi_set1_psqi5c   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   2   
10                                                  0   
11                                                  0   
12                                                  2   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  1   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  1   
22                                                  3   
23                                                  2   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  1   
28                                                  2   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  1   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  2   
39                                                  0   
40                                                  0   
41                                                  2   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  2   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  2   
54                                                  0   
55                                                  0   
56                                                  1   
57                                                  0   
58                                                  2   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  3   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  2   
71                                                  0   
72                                                  1   
73                                                  0   
74                                                  2   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  3   
79                                                  3   
80                                                  1   
81                                                  1   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  3   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  2   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  0   

              Pittsburgh Sleep Quality Index (PSQI).8  \
0   Cannot breathe comfortably (0=Not during the p...   
1                                    psqi_set1_psqi5d   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  2   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  3   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  2   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  3   
94                                                  0   
95                                                  0   
96                                                  1   

              Pittsburgh Sleep Quality Index (PSQI).9  \
0   Cough or snore loudly (0=Not during the past m...   
1                                    psqi_set1_psqi5e   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  2   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  2   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  1   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  1   
95                                                  0   
96                                                  0   

             Pittsburgh Sleep Quality Index (PSQI).10  \
0   Feel too cold (0=Not during the past month, 1=...   
1                                    psqi_set2_psqi5f   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   1   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   1   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  2   
36                                                  2   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  2   
42                                                  1   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  1   
63                                                  0   
64                                                  2   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  2   
70                                                  1   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  1   
79                                                  0   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  0   
86                                                  0   
87                                                  1   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  0   

             Pittsburgh Sleep Quality Index (PSQI).11  \
0   Feel too hot (0=Not during the past month, 1=L...   
1                                    psqi_set2_psqi5g   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   1   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  2   
21                                                  2   
22                                                  0   
23                                                  2   
24                                                  0   
25                                                  1   
26                                                  2   
27                                                  2   
28                                                  0   
29                                                  1   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  2   
36                                                  0   
37                                                  0   
38                                                  2   
39                                                  0   
40                                                  1   
41                                                  0   
42                                                  2   
43                                                  0   
44                                                  0   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  0   
49                                                  1   
50                                                  0   
51                                                  0   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  0   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  2   
63                                                  0   
64                                                  2   
65                                                  0   
66                                                  0   
67                                                  1   
68                                                  2   
69                                                  3   
70                                                  2   
71                                                  0   
72                                                  0   
73                                                  2   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  2   
78                                                  2   
79                                                  0   
80                                                  2   
81                                                  2   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  0   
89                                                  2   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  3   
94                                                  2   
95                                                  1   
96                                                  1   

             Pittsburgh Sleep Quality Index (PSQI).12  \
0   Have bad dreams (0=Not during the past month, ...   
1                                    psqi_set2_psqi5h   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   2   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  2   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  1   
22                                                  0   
23                                                  2   
24                                                  1   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  2   
36                                                  0   
37                                                  1   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  1   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  2   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  1   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  2   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  1   
81                                                  0   
82                                                  1   
83                                                  0   
84                                                  1   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  1   
89                                                  0   
90                                                  0   
91                                                  2   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  2   
96                                                  2   

             Pittsburgh Sleep Quality Index (PSQI).13  \
0   Have pain (0=Not during the past month, 1=Less...   
1                                    psqi_set2_psqi5i   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  1   
19                                                  0   
20                                                  0   
21                                                  1   
22                                                  0   
23                                                  0   
24                                                  1   
25                                                  0   
26                                                  2   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  3   
37                                                  1   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  1   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  2   
84                                                  0   
85                                                  0   
86                                                  1   
87                                                  0   
88                                                  0   
89                                                  2   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  2   
94                                                  0   
95                                                  0   
96                                                  1   

             Pittsburgh Sleep Quality Index (PSQI).14  \
0   Are there other reasons you have had trouble s...   
1                                              psqi5j   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  1   
34                                                  0   
35                                                  1   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  1   
63                                                  0   
64                                                  1   
65                                                  0   
66                                                  0   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  1   
73                                                  0   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  1   
78                                                  1   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  0   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  1   

             Pittsburgh Sleep Quality Index (PSQI).15  \
0   Please describe other reasons why you have had...   
1                                            pssqi5jb   
2                                                 NaN   
3                                                 NaN   
4                                                 NaN   
5                                                 NaN   
6                                                 NaN   
7                                                 NaN   
8                                                 NaN   
9                                                 NaN   
10                                                NaN   
11                                                NaN   
12                                                NaN   
13                                                NaN   
14                                                NaN   
15                                                NaN   
16                                                NaN   
17                                                NaN   
18                                                NaN   
19                                                NaN   
20                                                NaN   
21                                                NaN   
22                                                NaN   
23                                                NaN   
24                                                NaN   
25                                                NaN   
26                                                NaN   
27                                                NaN   
28                                                NaN   
29                                                NaN   
30                                                NaN   
31                                                NaN   
32                                                NaN   
33                                                NaN   
34                                                NaN   
35                                                NaN   
36                                                NaN   
37                                                NaN   
38                                                NaN   
39                                                NaN   
40                                                NaN   
41                                                NaN   
42                                                NaN   
43                                                NaN   
44                                                NaN   
45                                                NaN   
46                                                NaN   
47                                                NaN   
48                                                NaN   
49                                                NaN   
50                                                NaN   
51                                                NaN   
52                                                NaN   
53                                                NaN   
54                                                NaN   
55                                                NaN   
56                                                NaN   
57                                                NaN   
58                                                NaN   
59                                                NaN   
60                                                NaN   
61                                                NaN   
62                                                NaN   
63                                                NaN   
64                                                NaN   
65                                                NaN   
66                                                NaN   
67                                                NaN   
68                                                NaN   
69                                                NaN   
70                                                NaN   
71                                                NaN   
72                                                NaN   
73                                                NaN   
74                                                NaN   
75                                                NaN   
76                                                NaN   
77                                                NaN   
78                                                NaN   
79                                                NaN   
80                                                NaN   
81                                                NaN   
82                                                NaN   
83                                                NaN   
84                                                NaN   
85                                                NaN   
86                                                NaN   
87                                                NaN   
88                                                NaN   
89                                                NaN   
90                                                NaN   
91                                                NaN   
92                                                NaN   
93                                                NaN   
94                                                NaN   
95                                                NaN   
96                                                NaN   

             Pittsburgh Sleep Quality Index (PSQI).16  \
0   How often during the past month have you had t...   
1                                             psqi5jc   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  3   
34                                                  0   
35                                                  2   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  3   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  3   
63                                                  0   
64                                                  2   
65                                                  0   
66                                                  0   
67                                                  2   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  1   
73                                                  0   
74                                                  0   
75                                                  3   
76                                                  0   
77                                                  2   
78                                                  3   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  2   
84                                                  1   
85                                                  3   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  3   
90                                                  0   
91                                                  3   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  3   

             Pittsburgh Sleep Quality Index (PSQI).17  \
0   During the past month, how often have you take...   
1                                     psqi_component6   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   1   
9                                                   2   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  2   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  1   
36                                                  3   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  2   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  1   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  2   
63                                                  1   
64                                                  1   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  1   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  3   
76                                                  0   
77                                                  0   
78                                                  1   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  2   
95                                                  0   
96                                                  0   

             Pittsburgh Sleep Quality Index (PSQI).18  \
0   During the past month, how often have you had ...   
1                                     psqi_set3_psqi8   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  0   
19                                                  0   
20                                                  2   
21                                                  0   
22                                                  0   
23                                                  2   
24                                                  3   
25                                                  2   
26                                                  0   
27                                                  2   
28                                                  2   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  0   
37                                                  2   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  2   
42                                                  0   
43                                                  2   
44                                                  0   
45                                                  2   
46                                                  1   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  1   
52                                                  2   
53                                                  0   
54                                                  1   
55                                                  3   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  3   
60                                                  0   
61                                                  2   
62                                                  1   
63                                                  0   
64                                                  0   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  0   
73                                                  3   
74                                                  0   
75                                                  0   
76                                                  2   
77                                                  1   
78                                                  1   
79                                                  0   
80                                                  0   
81                                                  2   
82                                                  0   
83                                                  2   
84                                                  0   
85                                                  3   
86                                                  0   
87                                                  1   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  1   
92                                                  0   
93                                                  3   
94                                                  2   
95                                                  0   
96                                                  1   

             Pittsburgh Sleep Quality Index (PSQI).19  \
0   During the past month, how much of a problem h...   
1                                               psqi9   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   1   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  2   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  2   
21                                                  2   
22                                                  0   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  0   
29                                                  0   
30                                                  1   
31                                                  3   
32                                                  0   
33                                                  2   
34                                                  3   
35                                                  3   
36                                                  0   
37                                                  2   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  2   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  3   
55                                                  3   
56                                                  0   
57                                                  2   
58                                                  3   
59                                                  0   
60                                                  2   
61                                                  2   
62                                                  3   
63                                                  2   
64                                                  0   
65                                                  3   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  3   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  3   
86                                                  2   
87                                                  1   
88                                                  0   
89                                                  2   
90                                                  2   
91                                                  2   
92                                                  0   
93                                                  3   
94                                                  2   
95                                                  0   
96                                                  2   

             Pittsburgh Sleep Quality Index (PSQI).20  \
0   During the past month, how would you rate your...   
1                                     psqi_component1   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  0   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  0   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  1   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  2   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  0   
57                                                  1   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  2   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  2   

                        Insomnia Severity Index (ISI)  \
0   Difficulty falling asleep (0=None, 1=Mild, 2=M...   
1                                               isi_1   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   0   
9                                                   1   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  1   
18                                                  0   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  2   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  3   
38                                                  0   
39                                                  0   
40                                                  1   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  1   
45                                                  0   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  0   
56                                                  0   
57                                                  1   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  2   
62                                                  2   
63                                                  1   
64                                                  2   
65                                                  0   
66                                                  1   
67                                                  3   
68                                                  1   
69                                                  3   
70                                                  1   
71                                                  3   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  3   
77                                                  2   
78                                                  3   
79                                                  3   
80                                                  1   
81                                                  1   
82                                                  0   
83                                                  2   
84                                                  1   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  2   
94                                                  2   
95                                                  2   
96                                                  1   

                      Insomnia Severity Index (ISI).1  \
0   Difficulty staying asleep (0=None, 1=Mild, 2=M...   
1                                               isi_2   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  2   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  0   
26                                                  2   
27                                                  2   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  1   
36                                                  0   
37                                                  2   
38                                                  2   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  1   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  3   
62                                                  3   
63                                                  1   
64                                                  2   
65                                                  0   
66                                                  0   
67                                                  1   
68                                                  0   
69                                                  1   
70                                                  0   
71                                                  1   
72                                                  0   
73                                                  0   
74                                                  1   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  2   
79                                                  2   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  0   
86                                                  2   
87                                                  0   
88                                                  0   
89                                                  3   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  2   
95                                                  2   
96                                                  1   

                      Insomnia Severity Index (ISI).2  \
0   Problem waking up too early (0=None, 1=Mild, 2...   
1                                               isi_3   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   1   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  1   
20                                                  0   
21                                                  2   
22                                                  0   
23                                                  0   
24                                                  2   
25                                                  0   
26                                                  2   
27                                                  1   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  2   
38                                                  0   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  2   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  1   
59                                                  0   
60                                                  1   
61                                                  1   
62                                                  3   
63                                                  1   
64                                                  2   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  2   
69                                                  0   
70                                                  1   
71                                                  3   
72                                                  0   
73                                                  4   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  0   
81                                                  1   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  0   
86                                                  3   
87                                                  1   
88                                                  0   
89                                                  0   
90                                                  1   
91                                                  0   
92                                                  0   
93                                                  2   
94                                                  3   
95                                                  0   
96                                                  0   

                      Insomnia Severity Index (ISI).3  \
0   How SATISFIED / DISSATISFIED are you with your...   
1                                               isi_4   
2                                                   0   
3                                                   0   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   0   
8                                                   0   
9                                                   2   
10                                                  3   
11                                                  2   
12                                                  2   
13                                                  1   
14                                                  0   
15                                                  3   
16                                                  2   
17                                                  3   
18                                                  1   
19                                                  2   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  3   
26                                                  1   
27                                                  3   
28                                                  2   
29                                                  1   
30                                                  0   
31                                                  3   
32                                                  0   
33                                                  1   
34                                                  3   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  2   
42                                                  2   
43                                                  1   
44                                                  3   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  0   
51                                                  2   
52                                                  3   
53                                                  0   
54                                                  3   
55                                                  3   
56                                                  1   
57                                                  2   
58                                                  2   
59                                                  2   
60                                                  2   
61                                                  3   
62                                                  3   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  3   
67                                                  2   
68                                                  1   
69                                                  3   
70                                                  2   
71                                                  3   
72                                                  3   
73                                                  3   
74                                                  2   
75                                                  3   
76                                                  3   
77                                                  2   
78                                                  3   
79                                                  2   
80                                                  2   
81                                                  2   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  4   
86                                                  3   
87                                                  2   
88                                                  2   
89                                                  4   
90                                                  2   
91                                                  2   
92                                                  1   
93                                                  3   
94                                                  3   
95                                                  2   
96                                                  4   

                      Insomnia Severity Index (ISI).4  \
0   How NOTICEABLE to others do you think your sle...   
1                                               isi_5   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  2   
22                                                  0   
23                                                  0   
24                                                  1   
25                                                  1   
26                                                  2   
27                                                  2   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  3   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  2   
38                                                  0   
39                                                  0   
40                                                  1   
41                                                  1   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  2   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  1   
53                                                  0   
54                                                  2   
55                                                  3   
56                                                  0   
57                                                  2   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  3   
72                                                  2   
73                                                  2   
74                                                  0   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  3   
79                                                  3   
80                                                  0   
81                                                  1   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  1   
86                                                  2   
87                                                  0   
88                                                  0   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  4   
95                                                  1   
96                                                  3   

                      Insomnia Severity Index (ISI).5  \
0   How WORRIED/DISTRESSED are you about your curr...   
1                                               isi_6   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  1   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  2   
22                                                  0   
23                                                  1   
24                                                  2   
25                                                  1   
26                                                  0   
27                                                  2   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  2   
35                                                  1   
36                                                  0   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  2   
45                                                  1   
46                                                  0   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  1   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  3   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  0   
78                                                  2   
79                                                  2   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  3   
86                                                  2   
87                                                  1   
88                                                  0   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  2   
94                                                  3   
95                                                  1   
96                                                  3   

                      Insomnia Severity Index (ISI).6  \
0   To what extent do you consider your sleep prob...   
1                                               isi_7   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   0   
9                                                   1   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  1   
18                                                  0   
19                                                  1   
20                                                  0   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  0   
27                                                  2   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  2   
35                                                  1   
36                                                  2   
37                                                  1   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  2   
42                                                  0   
43                                                  0   
44                                                  2   
45                                                  1   
46                                                  0   
47                                                  1   
48                                                  2   
49                                                  0   
50                                                  0   
51                                                  1   
52                                                  1   
53                                                  0   
54                                                  2   
55                                                  2   
56                                                  0   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  0   
69                                                  2   
70                                                  2   
71                                                  3   
72                                                  2   
73                                                  3   
74                                                  2   
75                                                  1   
76                                                  2   
77                                                  2   
78                                                  4   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  2   
87                                                  3   
88                                                  1   
89                                                  3   
90                                                  2   
91                                                  2   
92                                                  1   
93                                                  3   
94                                                  3   
95                                                  1   
96                                                  4   

                  Adverse Childhood Experiences (ACE)  \
0   Did your parent or other adult in the househol...   
1                                               ace_1   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                Adverse Childhood Experiences (ACE).1  \
0   Did a parent or other adult in the household o...   
1                                               ace_2   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                Adverse Childhood Experiences (ACE).2  \
0   Did an adult or person at least 5 years older ...   
1                                               ace_3   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                Adverse Childhood Experiences (ACE).3  \
0   Did you often feel that no one in your family ...   
1                                               ace_4   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  1   

                Adverse Childhood Experiences (ACE).4  \
0   Did you often feel that you didn't have enough...   
1                                               ace_5   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                Adverse Childhood Experiences (ACE).5  \
0   Were your parents ever separated or divorced? ...   
1                                               ace_6   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   1   
6                                                   0   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  0   
18                                                  1   
19                                                  0   
20                                                  0   
21                                                  1   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  1   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  1   
40                                                  0   
41                                                  1   
42                                                  1   
43                                                  0   
44                                                  0   
45                                                  1   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  1   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  1   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  1   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  1   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  0   

                Adverse Childhood Experiences (ACE).6  \
0   Was your mother or stepmother: often pushed, g...   
1                                               ace_7   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                Adverse Childhood Experiences (ACE).7  \
0   Did you live with anyone who was a problem dri...   
1                                               ace_8   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   1   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                Adverse Childhood Experiences (ACE).8  \
0   Was a household member depressed or mentally i...   
1                                               ace_9   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   1   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  1   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  1   
95                                                  0   
96                                                  0   

                Adverse Childhood Experiences (ACE).9  \
0   Did a household member go to prison? (0=no, 1=...   
1                                              ace_10   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                      Beck Depression Inventory (BDI)  \
0   Sadness (0=I do not feel sad, 1=I feel sad muc...   
1                                               bdi_1   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  0   
78                                                  1   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  1   
89                                                  0   
90                                                  0   
91                                                  1   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  1   

                    Beck Depression Inventory (BDI).1  \
0   Pessimism (0=I am not discouraged about my fut...   
1                                               bdi_2   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  1   
23                                                  0   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  1   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  1   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  1   
66                                                  0   
67                                                  1   
68                                                  1   
69                                                  0   
70                                                  1   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  1   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  1   

                    Beck Depression Inventory (BDI).2  \
0   Past Failure (0=I do not feel like a failure, ...   
1                                               bdi_3   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  2   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  1   
69                                                  0   
70                                                  0   
71                                                  2   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  0   
87                                                  0   
88                                                  1   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  1   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  0   

                    Beck Depression Inventory (BDI).3  \
0   Loss of Pleasure (0=I get as much pleasure as ...   
1                                               bdi_4   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  1   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  1   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  1   
77                                                  0   
78                                                  0   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  2   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  0   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  1   

                    Beck Depression Inventory (BDI).4  \
0   Guilty Feelings (0=I don't feel particularly g...   
1                                               bdi_5   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  1   
56                                                  0   
57                                                  1   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  1   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  1   
92                                                  1   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                    Beck Depression Inventory (BDI).5  \
0   Punishment Feelings (0=I don't feel I am being...   
1                                               bdi_6   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                    Beck Depression Inventory (BDI).6  \
0   Self-Dislike (0=I feel the same about myself a...   
1                                               bdi_7   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  1   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  2   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  1   
69                                                  0   
70                                                  0   
71                                                  2   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  1   
76                                                  1   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  0   

                    Beck Depression Inventory (BDI).7  \
0   Self-Criticalness (0=I don't criticize or blam...   
1                                               bdi_8   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  1   
25                                                  2   
26                                                  0   
27                                                  0   
28                                                  1   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  2   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  1   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  1   
61                                                  1   
62                                                  0   
63                                                  1   
64                                                  0   
65                                                  1   
66                                                  0   
67                                                  1   
68                                                  2   
69                                                  0   
70                                                  1   
71                                                  1   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  0   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  0   

                    Beck Depression Inventory (BDI).8  \
0   Suicidal Thoughts or Wishes (0=I don't have an...   
1                                               bdi_9   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  1   
88                                                  1   
89                                                  0   
90                                                  0   
91                                                  1   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                    Beck Depression Inventory (BDI).9  \
0   Crying (0=I don't cry any more than I used to,...   
1                                              bdi_10   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  1   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  1   
23                                                  0   
24                                                  1   
25                                                  3   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  1   
64                                                  0   
65                                                  1   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  0   
78                                                  1   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  1   

                   Beck Depression Inventory (BDI).10  \
0   Agitation (0=I am no more restless or wound up...   
1                                              bdi_11   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  1   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  1   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  0   
78                                                  1   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  1   
86                                                  1   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  1   

                   Beck Depression Inventory (BDI).11  \
0   Loss of Interest (0=I have not lost interest i...   
1                                              bdi_12   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  2   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  0   
66                                                  1   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  0   
76                                                  1   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  2   

                   Beck Depression Inventory (BDI).12  \
0   Indecisiveness (0=I make decisions about as we...   
1                                              bdi_13   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  0   
56                                                  0   
57                                                  1   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  1   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  1   
95                                                  0   
96                                                  2   

                   Beck Depression Inventory (BDI).13  \
0   Worthlessness (0=I do not feel I am worthless,...   
1                                              bdi_14   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  2   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  1   

                   Beck Depression Inventory (BDI).14  \
0   Loss of Energy (0=I have as much energy as eve...   
1                                              bdi_15   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   1   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  0   
35                                                  1   
36                                                  0   
37                                                  1   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  1   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  1   
63                                                  0   
64                                                  1   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  1   
71                                                  0   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  1   
77                                                  0   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  2   

                   Beck Depression Inventory (BDI).15  \
0   Changes in Sleeping Pattern (0=I have not expe...   
1                                              bdi_16   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   1   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  1   
22                                                  0   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  0   
28                                                  0   
29                                                  1   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  1   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  2   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  1   
59                                                  0   
60                                                  1   
61                                                  2   
62                                                  3   
63                                                  0   
64                                                  1   
65                                                  0   
66                                                  1   
67                                                  2   
68                                                  0   
69                                                  0   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  3   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  2   
92                                                  0   
93                                                  2   
94                                                  1   
95                                                  0   
96                                                  2   

                   Beck Depression Inventory (BDI).16  \
0   Irritability (0=I am no more irritable than us...   
1                                              bdi_17   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  1   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  1   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  0   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  2   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  1   
86                                                  1   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  2   

                   Beck Depression Inventory (BDI).17  \
0   Changes in Appetite (0=I have not experienced ...   
1                                              bdi_18   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  0   
37                                                  1   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  0   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  1   
71                                                  0   
72                                                  1   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  0   
78                                                  1   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  1   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  2   
95                                                  0   
96                                                  1   

                   Beck Depression Inventory (BDI).18  \
0   Concentration Difficulty (0=I can concentrate ...   
1                                              bdi_19   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  2   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  0   
36                                                  0   
37                                                  1   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  0   
56                                                  0   
57                                                  1   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  0   
70                                                  1   
71                                                  0   
72                                                  1   
73                                                  2   
74                                                  0   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  2   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  2   
94                                                  0   
95                                                  0   
96                                                  2   

                   Beck Depression Inventory (BDI).19  \
0   Tiredness or Fatigue (0=I am no more tired or ...   
1                                              bdi_20   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  1   
22                                                  0   
23                                                  0   
24                                                  1   
25                                                  2   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  1   
53                                                  0   
54                                                  1   
55                                                  0   
56                                                  0   
57                                                  1   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  1   
71                                                  0   
72                                                  0   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  0   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  1   
86                                                  1   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  2   

                   Beck Depression Inventory (BDI).20  \
0   Loss of Interest in Sex (0=I have not noticed ...   
1                                              bdi_21   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  2   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                Adolescent Stress Questionnaire (ASQ)  \
0   Disagreements between you and your father (1=N...   
1                                               asq_1   
2                                                   2   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  3   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  3   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  3   
25                                                  4   
26                                                  2   
27                                                  2   
28                                                  2   
29                                                  1   
30                                                  4   
31                                                  5   
32                                                  3   
33                                                  1   
34                                                  4   
35                                                  4   
36                                                  4   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  2   
47                                                  2   
48                                                  2   
49                                                  2   
50                                                  1   
51                                                  1   
52                                                  4   
53                                                  3   
54                                                  2   
55                                                  1   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  3   
60                                                  2   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  3   
66                                                  1   
67                                                  4   
68                                                  3   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  3   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  2   
77                                                  1   
78                                                  1   
79                                                  4   
80                                                  2   
81                                                  1   
82                                                  2   
83                                                  3   
84                                                  3   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  4   
89                                                  3   
90                                                  1   
91                                                  4   
92                                                  2   
93                                                  4   
94                                                  2   
95                                                  1   
96                                                  4   

              Adolescent Stress Questionnaire (ASQ).1  \
0   Not being taken seriously by your parents (1=N...   
1                                               asq_2   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  3   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  3   
29                                                  1   
30                                                  2   
31                                                  4   
32                                                  1   
33                                                  2   
34                                                  3   
35                                                  4   
36                                                  3   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  3   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  2   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  5   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  3   
58                                                  1   
59                                                  4   
60                                                  2   
61                                                  2   
62                                                  3   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  3   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  2   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  4   
94                                                  3   
95                                                  1   
96                                                  2   

              Adolescent Stress Questionnaire (ASQ).2  \
0   Getting up early in the morning to go to schoo...   
1                                               asq_3   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   1   
9                                                   2   
10                                                  2   
11                                                  3   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  3   
16                                                  3   
17                                                  2   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  4   
25                                                  3   
26                                                  1   
27                                                  1   
28                                                  3   
29                                                  1   
30                                                  2   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  4   
35                                                  2   
36                                                  5   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  3   
44                                                  3   
45                                                  2   
46                                                  2   
47                                                  2   
48                                                  3   
49                                                  2   
50                                                  2   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  4   
56                                                  3   
57                                                  2   
58                                                  2   
59                                                  5   
60                                                  3   
61                                                  3   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  3   
68                                                  4   
69                                                  4   
70                                                  2   
71                                                  4   
72                                                  2   
73                                                  2   
74                                                  2   
75                                                  1   
76                                                  3   
77                                                  1   
78                                                  2   
79                                                  3   
80                                                  3   
81                                                  2   
82                                                  2   
83                                                  2   
84                                                  1   
85                                                  3   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  2   
90                                                  3   
91                                                  2   
92                                                  1   
93                                                  5   
94                                                  4   
95                                                  2   
96                                                  4   

              Adolescent Stress Questionnaire (ASQ).3  \
0   Little or no control over your life (1=Not at ...   
1                                               asq_4   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   5   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  4   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  4   
26                                                  1   
27                                                  3   
28                                                  4   
29                                                  2   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  3   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  2   
43                                                  4   
44                                                  1   
45                                                  3   
46                                                  2   
47                                                  2   
48                                                  1   
49                                                  2   
50                                                  2   
51                                                  2   
52                                                  3   
53                                                  3   
54                                                  2   
55                                                  1   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  3   
63                                                  3   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  3   
68                                                  2   
69                                                  1   
70                                                  2   
71                                                  3   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  3   
80                                                  1   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  4   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  4   
92                                                  2   
93                                                  1   
94                                                  4   
95                                                  1   
96                                                  4   

              Adolescent Stress Questionnaire (ASQ).4  \
0   Having to study things you do not understand (...   
1                                               asq_5   
2                                                   1   
3                                                   2   
4                                                   4   
5                                                   2   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  4   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  4   
20                                                  4   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  3   
28                                                  4   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  2   
33                                                  3   
34                                                  3   
35                                                  2   
36                                                  4   
37                                                  3   
38                                                  3   
39                                                  3   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  5   
44                                                  2   
45                                                  2   
46                                                  2   
47                                                  3   
48                                                  3   
49                                                  3   
50                                                  3   
51                                                  2   
52                                                  4   
53                                                  4   
54                                                  1   
55                                                  3   
56                                                  2   
57                                                  4   
58                                                  2   
59                                                  3   
60                                                  3   
61                                                  3   
62                                                  2   
63                                                  3   
64                                                  4   
65                                                  4   
66                                                  2   
67                                                  4   
68                                                  3   
69                                                  4   
70                                                  2   
71                                                  5   
72                                                  2   
73                                                  4   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  2   
78                                                  4   
79                                                  5   
80                                                  4   
81                                                  1   
82                                                  2   
83                                                  3   
84                                                  4   
85                                                  5   
86                                                  2   
87                                                  2   
88                                                  3   
89                                                  5   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  5   
94                                                  4   
95                                                  2   
96                                                  5   

              Adolescent Stress Questionnaire (ASQ).5  \
0   Teachers expecting too much from you (1=Not at...   
1                                               asq_6   
2                                                   1   
3                                                   1   
4                                                   4   
5                                                   1   
6                                                   3   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  4   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  4   
29                                                  1   
30                                                  2   
31                                                  3   
32                                                  1   
33                                                  3   
34                                                  3   
35                                                  3   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  3   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  5   
44                                                  2   
45                                                  2   
46                                                  3   
47                                                  4   
48                                                  3   
49                                                  4   
50                                                  2   
51                                                  2   
52                                                  3   
53                                                  3   
54                                                  2   
55                                                  2   
56                                                  4   
57                                                  5   
58                                                  2   
59                                                  4   
60                                                  3   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  3   
66                                                  1   
67                                                  2   
68                                                  4   
69                                                  2   
70                                                  1   
71                                                  4   
72                                                  1   
73                                                  3   
74                                                  2   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  4   
80                                                  3   
81                                                  2   
82                                                  2   
83                                                  3   
84                                                  3   
85                                                  5   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  4   
90                                                  3   
91                                                  1   
92                                                  1   
93                                                  4   
94                                                  5   
95                                                  2   
96                                                  5   

              Adolescent Stress Questionnaire (ASQ).6  \
0   Concern about your future (1=Not at all stress...   
1                                               asq_7   
2                                                   2   
3                                                   2   
4                                                   2   
5                                                   4   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   3   
10                                                  3   
11                                                  3   
12                                                  1   
13                                                  4   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  3   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  5   
25                                                  5   
26                                                  1   
27                                                  4   
28                                                  3   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  3   
33                                                  3   
34                                                  2   
35                                                  3   
36                                                  5   
37                                                  4   
38                                                  4   
39                                                  2   
40                                                  2   
41                                                  3   
42                                                  2   
43                                                  5   
44                                                  2   
45                                                  2   
46                                                  2   
47                                                  3   
48                                                  3   
49                                                  2   
50                                                  3   
51                                                  3   
52                                                  4   
53                                                  2   
54                                                  3   
55                                                  5   
56                                                  4   
57                                                  4   
58                                                  1   
59                                                  3   
60                                                  2   
61                                                  4   
62                                                  3   
63                                                  4   
64                                                  5   
65                                                  5   
66                                                  2   
67                                                  5   
68                                                  4   
69                                                  4   
70                                                  2   
71                                                  4   
72                                                  2   
73                                                  3   
74                                                  1   
75                                                  4   
76                                                  3   
77                                                  2   
78                                                  3   
79                                                  3   
80                                                  4   
81                                                  3   
82                                                  2   
83                                                  3   
84                                                  5   
85                                                  3   
86                                                  1   
87                                                  2   
88                                                  4   
89                                                  5   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  4   
94                                                  5   
95                                                  2   
96                                                  4   

              Adolescent Stress Questionnaire (ASQ).7  \
0   Being hassled for not fitting in (1=Not at all...   
1                                               asq_8   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  1   
48                                                  2   
49                                                  2   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  2   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  2   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  4   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  3   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  2   

              Adolescent Stress Questionnaire (ASQ).8  \
0   Keeping up with school work (1=Not at all stre...   
1                                               asq_9   
2                                                   2   
3                                                   1   
4                                                   3   
5                                                   1   
6                                                   4   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  3   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  1   
21                                                  3   
22                                                  3   
23                                                  2   
24                                                  3   
25                                                  5   
26                                                  2   
27                                                  1   
28                                                  2   
29                                                  3   
30                                                  3   
31                                                  4   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  4   
40                                                  3   
41                                                  2   
42                                                  3   
43                                                  5   
44                                                  1   
45                                                  2   
46                                                  2   
47                                                  4   
48                                                  4   
49                                                  3   
50                                                  2   
51                                                  4   
52                                                  4   
53                                                  2   
54                                                  1   
55                                                  4   
56                                                  3   
57                                                  4   
58                                                  3   
59                                                  1   
60                                                  3   
61                                                  3   
62                                                  1   
63                                                  3   
64                                                  3   
65                                                  4   
66                                                  2   
67                                                  4   
68                                                  4   
69                                                  3   
70                                                  1   
71                                                  3   
72                                                  3   
73                                                  4   
74                                                  2   
75                                                  2   
76                                                  1   
77                                                  3   
78                                                  5   
79                                                  4   
80                                                  4   
81                                                  2   
82                                                  2   
83                                                  3   
84                                                  3   
85                                                  2   
86                                                  2   
87                                                  3   
88                                                  3   
89                                                  3   
90                                                  2   
91                                                  2   
92                                                  1   
93                                                  4   
94                                                  4   
95                                                  2   
96                                                  5   

              Adolescent Stress Questionnaire (ASQ).9  \
0   Employers expecting too much of you (1=Not at ...   
1                                              asq_10   
2                                                   1   
3                                                   2   
4                                                   2   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  2   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  3   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  1   
53                                                  3   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  4   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  1   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  5   

             Adolescent Stress Questionnaire (ASQ).10  \
0   Having to take on new family responsibilities ...   
1                                              asq_11   
2                                                   1   
3                                                   2   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  3   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  2   
31                                                  5   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  1   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  2   
40                                                  3   
41                                                  2   
42                                                  2   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  2   
50                                                  2   
51                                                  4   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  3   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  2   
69                                                  1   
70                                                  1   
71                                                  4   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  4   
80                                                  1   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  2   
89                                                  2   
90                                                  2   
91                                                  1   
92                                                  1   
93                                                  3   
94                                                  2   
95                                                  1   
96                                                  4   

             Adolescent Stress Questionnaire (ASQ).11  \
0   Difficulty of some subjects (1=Not at all stre...   
1                                              asq_12   
2                                                   2   
3                                                   2   
4                                                   2   
5                                                   1   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   3   
10                                                  1   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  3   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  3   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  4   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  3   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  5   
44                                                  2   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  3   
49                                                  2   
50                                                  1   
51                                                  2   
52                                                  4   
53                                                  2   
54                                                  3   
55                                                  4   
56                                                  3   
57                                                  3   
58                                                  2   
59                                                  2   
60                                                  3   
61                                                  3   
62                                                  1   
63                                                  3   
64                                                  3   
65                                                  3   
66                                                  2   
67                                                  4   
68                                                  3   
69                                                  2   
70                                                  2   
71                                                  3   
72                                                  2   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  3   
80                                                  3   
81                                                  1   
82                                                  2   
83                                                  3   
84                                                  2   
85                                                  4   
86                                                  1   
87                                                  2   
88                                                  4   
89                                                  4   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  4   
94                                                  3   
95                                                  2   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).12  \
0   Abiding by petty rules at home (1=Not at all s...   
1                                              asq_13   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  3   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  2   
31                                                  4   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  4   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  3   
44                                                  1   
45                                                  1   
46                                                  2   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  1   
55                                                  3   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  3   
68                                                  3   
69                                                  1   
70                                                  2   
71                                                  4   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  4   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  5   
94                                                  4   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).13  \
0   Having to concentrate for too long during scho...   
1                                              asq_14   
2                                                   2   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  3   
16                                                  1   
17                                                  3   
18                                                  2   
19                                                  1   
20                                                  4   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  5   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  3   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  4   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  2   
42                                                  2   
43                                                  3   
44                                                  2   
45                                                  2   
46                                                  2   
47                                                  3   
48                                                  3   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  3   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  3   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  3   
65                                                  3   
66                                                  1   
67                                                  3   
68                                                  2   
69                                                  2   
70                                                  2   
71                                                  3   
72                                                  1   
73                                                  3   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  2   
82                                                  2   
83                                                  2   
84                                                  1   
85                                                  5   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  5   
90                                                  3   
91                                                  4   
92                                                  1   
93                                                  5   
94                                                  3   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).14  \
0   Inadequate school resources (1=Not at all stre...   
1                                              asq_15   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  2   
37                                                  1   
38                                                  1   
39                                                  2   
40                                                  1   
41                                                  1   
42                                                  3   
43                                                  3   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  1   
48                                                  2   
49                                                  2   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  3   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).15  \
0   Having to study things you are not interested ...   
1                                              asq_16   
2                                                   2   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   3   
9                                                   2   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  4   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  3   
21                                                  3   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  3   
34                                                  3   
35                                                  1   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  1   
41                                                  2   
42                                                  3   
43                                                  3   
44                                                  2   
45                                                  2   
46                                                  2   
47                                                  2   
48                                                  2   
49                                                  3   
50                                                  2   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  3   
58                                                  1   
59                                                  2   
60                                                  4   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  2   
67                                                  2   
68                                                  2   
69                                                  2   
70                                                  1   
71                                                  3   
72                                                  1   
73                                                  4   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  4   
80                                                  2   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  5   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  3   
92                                                  1   
93                                                  4   
94                                                  3   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).16  \
0   Being ignored or rejected by a person you want...   
1                                              asq_17   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  3   
11                                                  1   
12                                                  1   
13                                                  4   
14                                                  1   
15                                                  3   
16                                                  1   
17                                                  4   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  1   
22                                                  1   
23                                                  3   
24                                                  1   
25                                                  1   
26                                                  2   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  2   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  2   
37                                                  5   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  3   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  2   
46                                                  2   
47                                                  1   
48                                                  1   
49                                                  2   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  3   
54                                                  2   
55                                                  4   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  3   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  3   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  5   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  3   
92                                                  1   
93                                                  1   
94                                                  4   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).17  \
0   Disagreements between you and your teachers (1...   
1                                              asq_18   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   4   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  2   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  2   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  4   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  3   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  3   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  3   
94                                                  3   
95                                                  2   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).18  \
0   Not enough time to have fun (1=Not at all stre...   
1                                              asq_19   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   2   
8                                                   3   
9                                                   1   
10                                                  3   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  3   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  1   
36                                                  2   
37                                                  3   
38                                                  1   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  3   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  3   
49                                                  2   
50                                                  2   
51                                                  2   
52                                                  3   
53                                                  3   
54                                                  2   
55                                                  3   
56                                                  2   
57                                                  2   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  3   
68                                                  3   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  2   
73                                                  2   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  3   
80                                                  3   
81                                                  3   
82                                                  2   
83                                                  1   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  2   
88                                                  2   
89                                                  2   
90                                                  1   
91                                                  4   
92                                                  1   
93                                                  3   
94                                                  4   
95                                                  2   
96                                                  4   

             Adolescent Stress Questionnaire (ASQ).19  \
0   Putting pressure on yourself to meet your futu...   
1                                              asq_20   
2                                                   2   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   3   
7                                                   3   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  3   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  3   
20                                                  4   
21                                                  2   
22                                                  3   
23                                                  3   
24                                                  5   
25                                                  5   
26                                                  1   
27                                                  3   
28                                                  4   
29                                                  4   
30                                                  3   
31                                                  2   
32                                                  2   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  4   
37                                                  4   
38                                                  3   
39                                                  2   
40                                                  3   
41                                                  1   
42                                                  2   
43                                                  4   
44                                                  1   
45                                                  3   
46                                                  2   
47                                                  2   
48                                                  4   
49                                                  3   
50                                                  3   
51                                                  2   
52                                                  5   
53                                                  2   
54                                                  3   
55                                                  5   
56                                                  4   
57                                                  3   
58                                                  3   
59                                                  3   
60                                                  2   
61                                                  3   
62                                                  3   
63                                                  4   
64                                                  5   
65                                                  4   
66                                                  1   
67                                                  4   
68                                                  5   
69                                                  4   
70                                                  2   
71                                                  4   
72                                                  1   
73                                                  4   
74                                                  2   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  5   
79                                                  5   
80                                                  4   
81                                                  3   
82                                                  2   
83                                                  3   
84                                                  3   
85                                                  3   
86                                                  2   
87                                                  2   
88                                                  5   
89                                                  5   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  5   
94                                                  3   
95                                                  2   
96                                                  5   

             Adolescent Stress Questionnaire (ASQ).20  \
0   Disagreements with your brothers and sisters (...   
1                                              asq_21   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  1   
26                                                  2   
27                                                  3   
28                                                  4   
29                                                  1   
30                                                  2   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  1   
36                                                  1   
37                                                  2   
38                                                  1   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  2   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  2   
53                                                  3   
54                                                  1   
55                                                  2   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  2   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  4   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  2   
83                                                  1   
84                                                  3   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  3   
94                                                  2   
95                                                  1   
96                                                  4   

             Adolescent Stress Questionnaire (ASQ).21  \
0   Pressure to work to make money (1=Not at all s...   
1                                              asq_22   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  3   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  3   
28                                                  1   
29                                                  2   
30                                                  4   
31                                                  3   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  1   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  4   
40                                                  1   
41                                                  2   
42                                                  3   
43                                                  4   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  2   
50                                                  3   
51                                                  2   
52                                                  3   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  3   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  3   
65                                                  1   
66                                                  2   
67                                                  2   
68                                                  1   
69                                                  3   
70                                                  1   
71                                                  4   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  2   
81                                                  2   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  4   
89                                                  1   
90                                                  2   
91                                                  3   
92                                                  1   
93                                                  3   
94                                                  1   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).22  \
0   Not enough time for leisure (1=Not at all stre...   
1                                              asq_23   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   2   
8                                                   4   
9                                                   2   
10                                                  2   
11                                                  2   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  3   
26                                                  1   
27                                                  1   
28                                                  3   
29                                                  2   
30                                                  3   
31                                                  3   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  2   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  3   
49                                                  3   
50                                                  2   
51                                                  2   
52                                                  3   
53                                                  2   
54                                                  2   
55                                                  4   
56                                                  2   
57                                                  3   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  3   
64                                                  4   
65                                                  3   
66                                                  1   
67                                                  3   
68                                                  3   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  4   
80                                                  3   
81                                                  3   
82                                                  2   
83                                                  1   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  3   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  4   
94                                                  2   
95                                                  1   
96                                                  5   

             Adolescent Stress Questionnaire (ASQ).23  \
0   Having too much homework (1=Not at all stressf...   
1                                              asq_24   
2                                                   2   
3                                                   1   
4                                                   4   
5                                                   1   
6                                                   3   
7                                                   3   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  4   
14                                                  1   
15                                                  3   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  2   
24                                                  2   
25                                                  5   
26                                                  2   
27                                                  2   
28                                                  3   
29                                                  1   
30                                                  3   
31                                                  4   
32                                                  1   
33                                                  3   
34                                                  4   
35                                                  4   
36                                                  4   
37                                                  2   
38                                                  3   
39                                                  3   
40                                                  3   
41                                                  1   
42                                                  2   
43                                                  3   
44                                                  4   
45                                                  2   
46                                                  1   
47                                                  4   
48                                                  4   
49                                                  2   
50                                                  2   
51                                                  3   
52                                                  4   
53                                                  4   
54                                                  3   
55                                                  4   
56                                                  3   
57                                                  2   
58                                                  3   
59                                                  4   
60                                                  4   
61                                                  3   
62                                                  2   
63                                                  4   
64                                                  4   
65                                                  4   
66                                                  1   
67                                                  4   
68                                                  4   
69                                                  3   
70                                                  1   
71                                                  5   
72                                                  2   
73                                                  3   
74                                                  2   
75                                                  2   
76                                                  1   
77                                                  3   
78                                                  3   
79                                                  4   
80                                                  4   
81                                                  3   
82                                                  2   
83                                                  2   
84                                                  2   
85                                                  5   
86                                                  2   
87                                                  2   
88                                                  3   
89                                                  4   
90                                                  3   
91                                                  2   
92                                                  1   
93                                                  5   
94                                                  3   
95                                                  3   
96                                                  5   

             Adolescent Stress Questionnaire (ASQ).24  \
0   Not getting enough timely feedback on schoolwo...   
1                                              asq_25   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  3   
34                                                  1   
35                                                  1   
36                                                  2   
37                                                  1   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  3   
49                                                  2   
50                                                  2   
51                                                  2   
52                                                  3   
53                                                  4   
54                                                  2   
55                                                  3   
56                                                  2   
57                                                  4   
58                                                  1   
59                                                  2   
60                                                  4   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  4   
65                                                  1   
66                                                  1   
67                                                  3   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  3   
80                                                  1   
81                                                  2   
82                                                  2   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  5   
90                                                  2   
91                                                  1   
92                                                  2   
93                                                  4   
94                                                  5   
95                                                  1   
96                                                  4   

             Adolescent Stress Questionnaire (ASQ).25  \
0   Not enough time for activities outside school ...   
1                                              asq_26   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   3   
7                                                   2   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  3   
26                                                  1   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  3   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  3   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  2   
42                                                  2   
43                                                  2   
44                                                  3   
45                                                  3   
46                                                  2   
47                                                  4   
48                                                  3   
49                                                  1   
50                                                  3   
51                                                  2   
52                                                  3   
53                                                  2   
54                                                  2   
55                                                  4   
56                                                  3   
57                                                  2   
58                                                  2   
59                                                  2   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  3   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  3   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  4   
80                                                  2   
81                                                  3   
82                                                  2   
83                                                  1   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  3   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  3   
95                                                  2   
96                                                  4   

             Adolescent Stress Questionnaire (ASQ).26  \
0   Making the relationship work with your boyfrie...   
1                                              asq_27   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   3   
6                                                   4   
7                                                   1   
8                                                   4   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  3   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  3   
34                                                  1   
35                                                  1   
36                                                  3   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  1   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  3   
54                                                  2   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  3   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  4   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  5   
89                                                  2   
90                                                  1   
91                                                  4   
92                                                  1   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).27  \
0   Being judged by your friends (1=Not at all str...   
1                                              asq_28   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   4   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  5   
26                                                  1   
27                                                  4   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  1   
36                                                  2   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  4   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  4   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  3   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  4   
76                                                  2   
77                                                  3   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).28  \
0   Disagreements between your parents (1=Not at a...   
1                                              asq_29   
2                                                   1   
3                                                   2   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  3   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  3   
26                                                  2   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  3   
31                                                  5   
32                                                  3   
33                                                  1   
34                                                  5   
35                                                  4   
36                                                  4   
37                                                  1   
38                                                  2   
39                                                  2   
40                                                  1   
41                                                  1   
42                                                  4   
43                                                  4   
44                                                  2   
45                                                  3   
46                                                  2   
47                                                  3   
48                                                  2   
49                                                  2   
50                                                  2   
51                                                  1   
52                                                  4   
53                                                  2   
54                                                  2   
55                                                  3   
56                                                  3   
57                                                  3   
58                                                  3   
59                                                  4   
60                                                  2   
61                                                  3   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  3   
66                                                  1   
67                                                  4   
68                                                  4   
69                                                  1   
70                                                  1   
71                                                  3   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  3   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  2   
83                                                  2   
84                                                  3   
85                                                  3   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  3   
90                                                  1   
91                                                  3   
92                                                  2   
93                                                  4   
94                                                  2   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).29  \
0   Changes in your physical appearance with growi...   
1                                              asq_30   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  3   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  1   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  5   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  1   
48                                                  2   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  4   
65                                                  3   
66                                                  2   
67                                                  4   
68                                                  3   
69                                                  2   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  3   
77                                                  2   
78                                                  2   
79                                                  2   
80                                                  3   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  5   

             Adolescent Stress Questionnaire (ASQ).30  \
0   Arguments at home (1=Not at all stressful\n2=A...   
1                                              asq_31   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  4   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  3   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  3   
29                                                  2   
30                                                  3   
31                                                  5   
32                                                  1   
33                                                  1   
34                                                  3   
35                                                  3   
36                                                  4   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  2   
45                                                  3   
46                                                  2   
47                                                  2   
48                                                  2   
49                                                  2   
50                                                  1   
51                                                  2   
52                                                  4   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  3   
60                                                  2   
61                                                  2   
62                                                  2   
63                                                  3   
64                                                  2   
65                                                  3   
66                                                  1   
67                                                  4   
68                                                  4   
69                                                  1   
70                                                  1   
71                                                  4   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  3   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  3   
90                                                  1   
91                                                  3   
92                                                  1   
93                                                  4   
94                                                  1   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).31  \
0   Pressure to fit in with peers (1=Not at all st...   
1                                              asq_32   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  2   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  1   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  4   
76                                                  2   
77                                                  3   
78                                                  1   
79                                                  3   
80                                                  2   
81                                                  2   
82                                                  2   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  5   

             Adolescent Stress Questionnaire (ASQ).32  \
0   Compulsory school attendance (1=Not at all str...   
1                                              asq_33   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  3   
48                                                  3   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).33  \
0   Having to make decisions about future work or ...   
1                                              asq_34   
2                                                   2   
3                                                   2   
4                                                   2   
5                                                   2   
6                                                   1   
7                                                   2   
8                                                   4   
9                                                   2   
10                                                  3   
11                                                  3   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  3   
18                                                  2   
19                                                  2   
20                                                  3   
21                                                  3   
22                                                  3   
23                                                  3   
24                                                  5   
25                                                  5   
26                                                  1   
27                                                  4   
28                                                  3   
29                                                  3   
30                                                  2   
31                                                  4   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  3   
41                                                  3   
42                                                  2   
43                                                  5   
44                                                  1   
45                                                  3   
46                                                  2   
47                                                  3   
48                                                  3   
49                                                  2   
50                                                  3   
51                                                  3   
52                                                  4   
53                                                  3   
54                                                  4   
55                                                  4   
56                                                  4   
57                                                  4   
58                                                  2   
59                                                  2   
60                                                  2   
61                                                  3   
62                                                  2   
63                                                  4   
64                                                  5   
65                                                  4   
66                                                  2   
67                                                  4   
68                                                  3   
69                                                  4   
70                                                  1   
71                                                  4   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  2   
78                                                  3   
79                                                  5   
80                                                  3   
81                                                  3   
82                                                  2   
83                                                  2   
84                                                  2   
85                                                  4   
86                                                  2   
87                                                  4   
88                                                  1   
89                                                  5   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  5   
94                                                  3   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).34  \
0   Living at home (1=Not at all stressful\n2=A li...   
1                                              asq_35   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  3   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  3   
36                                                  4   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  3   
43                                                  4   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  2   
52                                                  3   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  2   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  4   
94                                                  3   
95                                                  1   
96                                                  4   

             Adolescent Stress Questionnaire (ASQ).35  \
0   Satisfaction with how you look (1=Not at all s...   
1                                              asq_36   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  4   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  1   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  4   
30                                                  2   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  5   
44                                                  2   
45                                                  3   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  2   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  4   
65                                                  3   
66                                                  2   
67                                                  3   
68                                                  3   
69                                                  2   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  3   
77                                                  3   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  3   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  2   
93                                                  1   
94                                                  3   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).36  \
0   Disagreements between you and your mother (1=N...   
1                                              asq_37   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  3   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  4   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  3   
30                                                  4   
31                                                  5   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  4   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  3   
42                                                  5   
43                                                  3   
44                                                  1   
45                                                  4   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  2   
50                                                  3   
51                                                  3   
52                                                  4   
53                                                  2   
54                                                  2   
55                                                  3   
56                                                  3   
57                                                  2   
58                                                  2   
59                                                  3   
60                                                  2   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  4   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  3   
69                                                  1   
70                                                  1   
71                                                  3   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  3   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  2   
89                                                  3   
90                                                  1   
91                                                  3   
92                                                  3   
93                                                  4   
94                                                  4   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).37  \
0   Not enough money to buy the things you want (1...   
1                                              asq_38   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  3   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  1   
26                                                  2   
27                                                  1   
28                                                  1   
29                                                  3   
30                                                  4   
31                                                  3   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  1   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  4   
42                                                  2   
43                                                  5   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  2   
50                                                  3   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  2   
55                                                  4   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  3   
62                                                  1   
63                                                  1   
64                                                  3   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  2   
69                                                  1   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  2   
94                                                  3   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).38  \
0   Going to school (1=Not at all stressful\n2=A l...   
1                                              asq_39   
2                                                   1   
3                                                   1   
4                                                   3   
5                                                   1   
6                                                   2   
7                                                   2   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  4   
34                                                  3   
35                                                  2   
36                                                  3   
37                                                  2   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  3   
43                                                  4   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  1   
48                                                  3   
49                                                  2   
50                                                  2   
51                                                  2   
52                                                  3   
53                                                  2   
54                                                  2   
55                                                  5   
56                                                  3   
57                                                  3   
58                                                  1   
59                                                  2   
60                                                  3   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  1   
67                                                  3   
68                                                  3   
69                                                  2   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  3   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  3   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  4   
94                                                  2   
95                                                  1   
96                                                  5   

             Adolescent Stress Questionnaire (ASQ).39  \
0   Not having enough time for your boyfriend/girl...   
1                                              asq_40   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  3   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  1   
36                                                  3   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  4   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  3   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  4   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  5   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  4   
95                                                  1   
96                                                  1   

             Adolescent Stress Questionnaire (ASQ).40  \
0   Teachers hassling you about the way you look (...   
1                                              asq_41   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   4   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  3   
94                                                  1   
95                                                  1   
96                                                  1   

             Adolescent Stress Questionnaire (ASQ).41  \
0   Abiding by petty rules at school (1=Not at all...   
1                                              asq_42   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  2   
12                                                  2   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  3   
22                                                  1   
23                                                  3   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  5   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  4   
94                                                  3   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).42  \
0   Pressure of study (1=Not at all stressful\n2=A...   
1                                              asq_43   
2                                                   1   
3                                                   1   
4                                                   3   
5                                                   1   
6                                                   3   
7                                                   2   
8                                                   2   
9                                                   2   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  5   
25                                                  5   
26                                                  1   
27                                                  1   
28                                                  3   
29                                                  2   
30                                                  1   
31                                                  4   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  1   
36                                                  4   
37                                                  2   
38                                                  3   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  3   
43                                                  5   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  3   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  5   
53                                                  3   
54                                                  2   
55                                                  3   
56                                                  1   
57                                                  4   
58                                                  1   
59                                                  2   
60                                                  3   
61                                                  2   
62                                                  1   
63                                                  3   
64                                                  4   
65                                                  4   
66                                                  2   
67                                                  5   
68                                                  4   
69                                                  4   
70                                                  1   
71                                                  4   
72                                                  2   
73                                                  3   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  3   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  2   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  4   
86                                                  2   
87                                                  2   
88                                                  4   
89                                                  3   
90                                                  2   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).43  \
0   Lack of trust from adults (1=Not at all stress...   
1                                              asq_44   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  2   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  3   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  3   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  2   
43                                                  3   
44                                                  1   
45                                                  4   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  1   
55                                                  4   
56                                                  2   
57                                                  3   
58                                                  1   
59                                                  3   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  2   
69                                                  1   
70                                                  1   
71                                                  3   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  4   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  4   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  2   
93                                                  4   
94                                                  2   
95                                                  1   
96                                                  1   

             Adolescent Stress Questionnaire (ASQ).44  \
0   Not being listened to by teachers (1=Not at al...   
1                                              asq_45   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  2   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  2   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  3   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  5   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  4   
94                                                  4   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).45  \
0   Parents expecting too much from you (1=Not at ...   
1                                              asq_46   
2                                                   1   
3                                                   3   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   4   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  4   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  1   
29                                                  2   
30                                                  2   
31                                                  5   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  3   
37                                                  2   
38                                                  3   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  3   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  4   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  2   
52                                                  2   
53                                                  3   
54                                                  1   
55                                                  2   
56                                                  3   
57                                                  5   
58                                                  1   
59                                                  3   
60                                                  1   
61                                                  3   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  3   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  3   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  4   
78                                                  1   
79                                                  3   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  2   
88                                                  4   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  2   
94                                                  1   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).46  \
0   Having to take on new financial responsibiliti...   
1                                              asq_47   
2                                                   1   
3                                                   1   
4                                                   3   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  3   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  3   
28                                                  1   
29                                                  2   
30                                                  3   
31                                                  5   
32                                                  1   
33                                                  3   
34                                                  1   
35                                                  2   
36                                                  3   
37                                                  2   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  3   
42                                                  2   
43                                                  5   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  2   
52                                                  3   
53                                                  3   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  5   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  3   
62                                                  1   
63                                                  2   
64                                                  3   
65                                                  1   
66                                                  2   
67                                                  3   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  4   
80                                                  1   
81                                                  2   
82                                                  2   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  4   
89                                                  1   
90                                                  3   
91                                                  1   
92                                                  2   
93                                                  4   
94                                                  3   
95                                                  1   
96                                                  4   

             Adolescent Stress Questionnaire (ASQ).47  \
0   Lack of understanding by parents (1=Not at all...   
1                                              asq_48   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  3   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  3   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  3   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  3   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  3   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  4   
52                                                  5   
53                                                  3   
54                                                  1   
55                                                  3   
56                                                  2   
57                                                  4   
58                                                  1   
59                                                  5   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  3   
64                                                  2   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  5   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  2   
73                                                  2   
74                                                  1   
75                                                  3   
76                                                  2   
77                                                  2   
78                                                  2   
79                                                  3   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  3   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).48  \
0   Parents hassling you about the way you look (1...   
1                                              asq_49   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  3   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  2   
55                                                  3   
56                                                  1   
57                                                  3   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  3   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).49  \
0   Work interfering with school and social activi...   
1                                              asq_50   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   4   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  2   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  2   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  3   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  1   
44                                                  1   
45                                                  4   
46                                                  2   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  3   
51                                                  2   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  2   
96                                                  5   

             Adolescent Stress Questionnaire (ASQ).50  \
0   Not enough money to buy the things you need (1...   
1                                              asq_51   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   4   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  3   
31                                                  5   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  4   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  3   
42                                                  3   
43                                                  5   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  3   
51                                                  2   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  3   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  2   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).51  \
0   Getting along with your boyfriend/girlfriend (...   
1                                              asq_52   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   3   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  2   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  2   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  1   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  3   
54                                                  2   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  3   
65                                                  1   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  3   
89                                                  1   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  1   

             Adolescent Stress Questionnaire (ASQ).52  \
0   Lack of freedom (1=Not at all stressful\n2=A l...   
1                                              asq_53   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   5   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  3   
11                                                  3   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  3   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  3   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  3   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  4   
44                                                  1   
45                                                  4   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  2   
50                                                  1   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  2   
55                                                  4   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  2   
69                                                  1   
70                                                  3   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  3   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  2   
82                                                  2   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  3   
92                                                  1   
93                                                  4   
94                                                  2   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).53  \
0   Peers hassling you about the way you look (1=N...   
1                                              asq_54   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  2   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  1   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  3   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  2   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).54  \
0   Lack of respect from teachers (1=Not at all st...   
1                                              asq_55   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  2   
22                                                  1   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  2   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  3   
94                                                  1   
95                                                  1   
96                                                  2   

             Adolescent Stress Questionnaire (ASQ).55  \
0   Disagreements between you and your peers (1=No...   
1                                              asq_56   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  1   
26                                                  2   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  2   
33                                                  3   
34                                                  3   
35                                                  1   
36                                                  4   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  4   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  3   
54                                                  3   
55                                                  3   
56                                                  3   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  3   

             Adolescent Stress Questionnaire (ASQ).56  \
0   Getting along with your teachers (1=Not at all...   
1                                              asq_57   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  2   
22                                                  1   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  1   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  2   
94                                                  4   
95                                                  1   
96                                                  1   

             Adolescent Stress Questionnaire (ASQ).57  \
0   Breaking up with your boyfriend/girlfriend (1=...   
1                                              asq_58   
2                                                   1   
3                                                   1   
4                                                   3   
5                                                   1   
6                                                   4   
7                                                   1   
8                                                   5   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  5   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  3   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  5   
37                                                  5   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  4   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  3   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  3   
54                                                  3   
55                                                  1   
56                                                  1   
57                                                  3   
58                                                  1   
59                                                  5   
60                                                  1   
61                                                  1   
62                                                  2   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  4   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  4   
87                                                  1   
88                                                  4   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  5   
95                                                  2   
96                                                  1   

   Cleveland Adolescent Sleepiness Questionnaire (CASQ)  \
0   I fall asleep during my morning classes (1=Nev...     
1                                              casq_1     
2                                                   1     
3                                                   1     
4                                                   2     
5                                                   1     
6                                                   1     
7                                                   1     
8                                                   1     
9                                                   1     
10                                                  1     
11                                                  1     
12                                                  1     
13                                                  1     
14                                                  1     
15                                                  2     
16                                                  1     
17                                                  3     
18                                                  1     
19                                                  1     
20                                                  1     
21                                                  1     
22                                                  2     
23                                                  1     
24                                                  3     
25                                                  1     
26                                                  1     
27                                                  1     
28                                                  1     
29                                                  1     
30                                                  1     
31                                                  1     
32                                                  1     
33                                                  1     
34                                                  1     
35                                                  2     
36                                                  2     
37                                                  1     
38                                                  1     
39                                                  2     
40                                                  1     
41                                                  1     
42                                                  1     
43                                                  1     
44                                                  1     
45                                                  1     
46                                                  1     
47                                                  1     
48                                                  1     
49                                                  1     
50                                                  1     
51                                                  1     
52                                                  1     
53                                                  1     
54                                                  1     
55                                                  3     
56                                                  1     
57                                                  1     
58                                                  1     
59                                                  3     
60                                                  2     
61                                                  3     
62                                                  1     
63                                                  1     
64                                                  1     
65                                                  3     
66                                                  2     
67                                                  1     
68                                                  2     
69                                                  1     
70                                                  2     
71                                                  1     
72                                                  2     
73                                                  1     
74                                                  1     
75                                                  1     
76                                                  1     
77                                                  1     
78                                                  2     
79                                                  1     
80                                                  1     
81                                                  1     
82                                                  1     
83                                                  1     
84                                                  1     
85                                                  1     
86                                                  1     
87                                                  2     
88                                                  2     
89                                                  1     
90                                                  1     
91                                                  2     
92                                                  1     
93                                                  3     
94                                                  2     
95                                                  1     
96                                                  2     

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).1  \
0   I go through the whole school day without feel...       
1                                              casq_2       
2                                                   4       
3                                                   4       
4                                                   5       
5                                                   3       
6                                                   4       
7                                                   4       
8                                                   2       
9                                                   4       
10                                                  3       
11                                                  3       
12                                                  5       
13                                                  3       
14                                                  5       
15                                                  3       
16                                                  2       
17                                                  4       
18                                                  3       
19                                                  2       
20                                                  2       
21                                                  2       
22                                                  2       
23                                                  2       
24                                                  4       
25                                                  5       
26                                                  3       
27                                                  1       
28                                                  4       
29                                                  1       
30                                                  4       
31                                                  5       
32                                                  1       
33                                                  3       
34                                                  4       
35                                                  4       
36                                                  3       
37                                                  4       
38                                                  2       
39                                                  2       
40                                                  3       
41                                                  3       
42                                                  2       
43                                                  3       
44                                                  3       
45                                                  2       
46                                                  2       
47                                                  4       
48                                                  3       
49                                                  1       
50                                                  3       
51                                                  1       
52                                                  4       
53                                                  1       
54                                                  1       
55                                                  4       
56                                                  3       
57                                                  3       
58                                                  2       
59                                                  1       
60                                                  4       
61                                                  4       
62                                                  5       
63                                                  3       
64                                                  3       
65                                                  2       
66                                                  4       
67                                                  3       
68                                                  5       
69                                                  3       
70                                                  2       
71                                                  4       
72                                                  3       
73                                                  2       
74                                                  4       
75                                                  4       
76                                                  2       
77                                                  4       
78                                                  1       
79                                                  1       
80                                                  2       
81                                                  5       
82                                                  4       
83                                                  4       
84                                                  3       
85                                                  2       
86                                                  3       
87                                                  2       
88                                                  4       
89                                                  1       
90                                                  1       
91                                                  1       
92                                                  2       
93                                                  5       
94                                                  4       
95                                                  5       
96                                                  4       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).2  \
0   I fall asleep during the last class of the day...       
1                                              casq_3       
2                                                   1       
3                                                   1       
4                                                   1       
5                                                   1       
6                                                   1       
7                                                   1       
8                                                   1       
9                                                   1       
10                                                  1       
11                                                  1       
12                                                  1       
13                                                  1       
14                                                  1       
15                                                  2       
16                                                  1       
17                                                  1       
18                                                  1       
19                                                  1       
20                                                  1       
21                                                  1       
22                                                  2       
23                                                  2       
24                                                  3       
25                                                  2       
26                                                  1       
27                                                  1       
28                                                  2       
29                                                  1       
30                                                  1       
31                                                  1       
32                                                  2       
33                                                  1       
34                                                  1       
35                                                  2       
36                                                  1       
37                                                  2       
38                                                  1       
39                                                  1       
40                                                  1       
41                                                  1       
42                                                  1       
43                                                  1       
44                                                  1       
45                                                  1       
46                                                  1       
47                                                  1       
48                                                  1       
49                                                  1       
50                                                  2       
51                                                  1       
52                                                  2       
53                                                  1       
54                                                  1       
55                                                  3       
56                                                  1       
57                                                  1       
58                                                  3       
59                                                  2       
60                                                  2       
61                                                  2       
62                                                  1       
63                                                  1       
64                                                  1       
65                                                  3       
66                                                  3       
67                                                  1       
68                                                  2       
69                                                  1       
70                                                  2       
71                                                  1       
72                                                  1       
73                                                  1       
74                                                  1       
75                                                  1       
76                                                  1       
77                                                  1       
78                                                  1       
79                                                  1       
80                                                  1       
81                                                  1       
82                                                  1       
83                                                  1       
84                                                  1       
85                                                  1       
86                                                  1       
87                                                  1       
88                                                  1       
89                                                  1       
90                                                  1       
91                                                  2       
92                                                  1       
93                                                  3       
94                                                  2       
95                                                  1       
96                                                  1       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).3  \
0   I feel drowsy if I ride in a car for longer th...       
1                                              casq_4       
2                                                   2       
3                                                   1       
4                                                   1       
5                                                   2       
6                                                   2       
7                                                   2       
8                                                   2       
9                                                   1       
10                                                  2       
11                                                  2       
12                                                  1       
13                                                  3       
14                                                  1       
15                                                  2       
16                                                  4       
17                                                  1       
18                                                  1       
19                                                  1       
20                                                  2       
21                                                  1       
22                                                  1       
23                                                  2       
24                                                  5       
25                                                  1       
26                                                  1       
27                                                  1       
28                                                  3       
29                                                  1       
30                                                  2       
31                                                  3       
32                                                  2       
33                                                  2       
34                                                  3       
35                                                  2       
36                                                  2       
37                                                  2       
38                                                  1       
39                                                  1       
40                                                  3       
41                                                  1       
42                                                  2       
43                                                  3       
44                                                  1       
45                                                  2       
46                                                  1       
47                                                  1       
48                                                  2       
49                                                  1       
50                                                  1       
51                                                  1       
52                                                  2       
53                                                  1       
54                                                  1       
55                                                  3       
56                                                  1       
57                                                  2       
58                                                  3       
59                                                  2       
60                                                  1       
61                                                  1       
62                                                  3       
63                                                  2       
64                                                  3       
65                                                  4       
66                                                  1       
67                                                  1       
68                                                  3       
69                                                  2       
70                                                  1       
71                                                  2       
72                                                  2       
73                                                  1       
74                                                  1       
75                                                  1       
76                                                  2       
77                                                  2       
78                                                  4       
79                                                  2       
80                                                  1       
81                                                  2       
82                                                  1       
83                                                  4       
84                                                  1       
85                                                  1       
86                                                  1       
87                                                  1       
88                                                  1       
89                                                  1       
90                                                  2       
91                                                  1       
92                                                  1       
93                                                  2       
94                                                  1       
95                                                  1       
96                                                  2       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).4  \
0   I feel wide-awake the whole day (1=Never (0 ti...       
1                                              casq_5       
2                                                   1       
3                                                   1       
4                                                   1       
5                                                   2       
6                                                   4       
7                                                   1       
8                                                   3       
9                                                   1       
10                                                  3       
11                                                  3       
12                                                  1       
13                                                  3       
14                                                  1       
15                                                  4       
16                                                  3       
17                                                  3       
18                                                  4       
19                                                  1       
20                                                  3       
21                                                  2       
22                                                  4       
23                                                  5       
24                                                  3       
25                                                  5       
26                                                  4       
27                                                  1       
28                                                  4       
29                                                  1       
30                                                  1       
31                                                  5       
32                                                  3       
33                                                  2       
34                                                  4       
35                                                  3       
36                                                  2       
37                                                  3       
38                                                  2       
39                                                  3       
40                                                  4       
41                                                  2       
42                                                  4       
43                                                  2       
44                                                  3       
45                                                  2       
46                                                  3       
47                                                  3       
48                                                  4       
49                                                  2       
50                                                  4       
51                                                  1       
52                                                  4       
53                                                  2       
54                                                  3       
55                                                  4       
56                                                  3       
57                                                  3       
58                                                  2       
59                                                  2       
60                                                  2       
61                                                  4       
62                                                  4       
63                                                  3       
64                                                  3       
65                                                  2       
66                                                  3       
67                                                  3       
68                                                  4       
69                                                  3       
70                                                  5       
71                                                  2       
72                                                  5       
73                                                  2       
74                                                  3       
75                                                  4       
76                                                  2       
77                                                  4       
78                                                  2       
79                                                  2       
80                                                  2       
81                                                  4       
82                                                  5       
83                                                  2       
84                                                  2       
85                                                  3       
86                                                  3       
87                                                  5       
88                                                  3       
89                                                  2       
90                                                  1       
91                                                  2       
92                                                  5       
93                                                  2       
94                                                  3       
95                                                  5       
96                                                  1       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).5  \
0   I fall asleep at school in my afternoon classe...       
1                                              casq_6       
2                                                   2       
3                                                   1       
4                                                   1       
5                                                   1       
6                                                   1       
7                                                   1       
8                                                   1       
9                                                   1       
10                                                  1       
11                                                  2       
12                                                  1       
13                                                  1       
14                                                  1       
15                                                  2       
16                                                  1       
17                                                  1       
18                                                  1       
19                                                  1       
20                                                  1       
21                                                  1       
22                                                  2       
23                                                  2       
24                                                  3       
25                                                  2       
26                                                  1       
27                                                  1       
28                                                  2       
29                                                  1       
30                                                  1       
31                                                  1       
32                                                  2       
33                                                  1       
34                                                  1       
35                                                  2       
36                                                  1       
37                                                  2       
38                                                  1       
39                                                  1       
40                                                  1       
41                                                  1       
42                                                  1       
43                                                  1       
44                                                  1       
45                                                  2       
46                                                  1       
47                                                  1       
48                                                  1       
49                                                  1       
50                                                  2       
51                                                  1       
52                                                  3       
53                                                  1       
54                                                  1       
55                                                  2       
56                                                  2       
57                                                  1       
58                                                  3       
59                                                  1       
60                                                  2       
61                                                  3       
62                                                  1       
63                                                  1       
64                                                  1       
65                                                  3       
66                                                  2       
67                                                  1       
68                                                  1       
69                                                  2       
70                                                  2       
71                                                  1       
72                                                  1       
73                                                  1       
74                                                  1       
75                                                  1       
76                                                  1       
77                                                  1       
78                                                  1       
79                                                  1       
80                                                  1       
81                                                  1       
82                                                  1       
83                                                  1       
84                                                  1       
85                                                  1       
86                                                  1       
87                                                  1       
88                                                  1       
89                                                  1       
90                                                  1       
91                                                  2       
92                                                  1       
93                                                  2       
94                                                  2       
95                                                  1       
96                                                  1       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).6  \
0   I feel alert during my classes (1=Never (0 tim...       
1                                              casq_7       
2                                                   1       
3                                                   1       
4                                                   2       
5                                                   1       
6                                                   2       
7                                                   2       
8                                                   2       
9                                                   2       
10                                                  3       
11                                                  2       
12                                                  1       
13                                                  3       
14                                                  1       
15                                                  3       
16                                                  1       
17                                                  1       
18                                                  2       
19                                                  1       
20                                                  3       
21                                                  1       
22                                                  2       
23                                                  2       
24                                                  3       
25                                                  3       
26                                                  1       
27                                                  1       
28                                                  2       
29                                                  2       
30                                                  1       
31                                                  2       
32                                                  1       
33                                                  2       
34                                                  3       
35                                                  2       
36                                                  2       
37                                                  4       
38                                                  2       
39                                                  1       
40                                                  2       
41                                                  3       
42                                                  2       
43                                                  2       
44                                                  2       
45                                                  2       
46                                                  2       
47                                                  3       
48                                                  2       
49                                                  1       
50                                                  2       
51                                                  1       
52                                                  2       
53                                                  1       
54                                                  1       
55                                                  3       
56                                                  3       
57                                                  2       
58                                                  1       
59                                                  2       
60                                                  3       
61                                                  3       
62                                                  2       
63                                                  2       
64                                                  2       
65                                                  3       
66                                                  3       
67                                                  3       
68                                                  5       
69                                                  4       
70                                                  5       
71                                                  3       
72                                                  4       
73                                                  4       
74                                                  5       
75                                                  4       
76                                                  3       
77                                                  4       
78                                                  2       
79                                                  3       
80                                                  3       
81                                                  5       
82                                                  4       
83                                                  3       
84                                                  3       
85                                                  4       
86                                                  5       
87                                                  4       
88                                                  4       
89                                                  2       
90                                                  3       
91                                                  3       
92                                                  4       
93                                                  3       
94                                                  1       
95                                                  5       
96                                                  5       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).7  \
0   I feel sleepy in the evening after school (1=N...       
1                                              casq_8       
2                                                   1       
3                                                   2       
4                                                   1       
5                                                   3       
6                                                   4       
7                                                   3       
8                                                   4       
9                                                   1       
10                                                  4       
11                                                  4       
12                                                  2       
13                                                  4       
14                                                  1       
15                                                  5       
16                                                  3       
17                                                  5       
18                                                  2       
19                                                  2       
20                                                  4       
21                                                  3       
22                                                  2       
23                                                  3       
24                                                  4       
25                                                  5       
26                                                  5       
27                                                  2       
28                                                  3       
29                                                  3       
30                                                  2       
31                                                  5       
32                                                  4       
33                                                  4       
34                                                  4       
35                                                  4       
36                                                  4       
37                                                  4       
38                                                  1       
39                                                  1       
40                                                  4       
41                                                  5       
42                                                  2       
43                                                  5       
44                                                  4       
45                                                  3       
46                                                  2       
47                                                  3       
48                                                  4       
49                                                  2       
50                                                  3       
51                                                  3       
52                                                  4       
53                                                  3       
54                                                  5       
55                                                  3       
56                                                  3       
57                                                  4       
58                                                  3       
59                                                  3       
60                                                  3       
61                                                  2       
62                                                  5       
63                                                  3       
64                                                  3       
65                                                  5       
66                                                  4       
67                                                  5       
68                                                  4       
69                                                  4       
70                                                  2       
71                                                  3       
72                                                  2       
73                                                  4       
74                                                  3       
75                                                  4       
76                                                  3       
77                                                  4       
78                                                  3       
79                                                  3       
80                                                  5       
81                                                  1       
82                                                  1       
83                                                  3       
84                                                  3       
85                                                  1       
86                                                  3       
87                                                  2       
88                                                  4       
89                                                  3       
90                                                  4       
91                                                  1       
92                                                  2       
93                                                  3       
94                                                  2       
95                                                  3       
96                                                  4       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).8  \
0   I feel sleepy when I ride in a bus to a school...       
1                                              casq_9       
2                                                   2       
3                                                   1       
4                                                   1       
5                                                   1       
6                                                   3       
7                                                   2       
8                                                   2       
9                                                   1       
10                                                  2       
11                                                  3       
12                                                  1       
13                                                  4       
14                                                  1       
15                                                  4       
16                                                  3       
17                                                  1       
18                                                  1       
19                                                  1       
20                                                  2       
21                                                  2       
22                                                  3       
23                                                  4       
24                                                  1       
25                                                  1       
26                                                  2       
27                                                  2       
28                                                  3       
29                                                  2       
30                                                  2       
31                                                  3       
32                                                  2       
33                                                  2       
34                                                  4       
35                                                  3       
36                                                  3       
37                                                  3       
38                                                  1       
39                                                  1       
40                                                  2       
41                                                  1       
42                                                  1       
43                                                  1       
44                                                  1       
45                                                  2       
46                                                  1       
47                                                  1       
48                                                  2       
49                                                  1       
50                                                  1       
51                                                  1       
52                                                  4       
53                                                  1       
54                                                  3       
55                                                  1       
56                                                  2       
57                                                  2       
58                                                  1       
59                                                  1       
60                                                  1       
61                                                  2       
62                                                  4       
63                                                  2       
64                                                  2       
65                                                  1       
66                                                  1       
67                                                  3       
68                                                  1       
69                                                  3       
70                                                  1       
71                                                  3       
72                                                  1       
73                                                  3       
74                                                  3       
75                                                  2       
76                                                  1       
77                                                  1       
78                                                  4       
79                                                  1       
80                                                  1       
81                                                  1       
82                                                  1       
83                                                  3       
84                                                  4       
85                                                  2       
86                                                  1       
87                                                  1       
88                                                  5       
89                                                  1       
90                                                  3       
91                                                  1       
92                                                  1       
93                                                  1       
94                                                  4       
95                                                  1       
96                                                  4       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).9  \
0   In the morning when I am in school, I fall asl...       
1                                             casq_10       
2                                                   1       
3                                                   1       
4                                                   2       
5                                                   1       
6                                                   1       
7                                                   1       
8                                                   1       
9                                                   1       
10                                                  1       
11                                                  1       
12                                                  1       
13                                                  1       
14                                                  1       
15                                                  1       
16                                                  1       
17                                                  2       
18                                                  1       
19                                                  1       
20                                                  1       
21                                                  1       
22                                                  1       
23                                                  1       
24                                                  3       
25                                                  1       
26                                                  1       
27                                                  1       
28                                                  2       
29                                                  1       
30                                                  1       
31                                                  1       
32                                                  1       
33                                                  1       
34                                                  1       
35                                                  2       
36                                                  2       
37                                                  1       
38                                                  2       
39                                                  2       
40                                                  1       
41                                                  1       
42                                                  1       
43                                                  1       
44                                                  1       
45                                                  1       
46                                                  1       
47                                                  1       
48                                                  1       
49                                                  1       
50                                                  1       
51                                                  1       
52                                                  2       
53                                                  1       
54                                                  1       
55                                                  2       
56                                                  1       
57                                                  1       
58                                                  1       
59                                                  2       
60                                                  2       
61                                                  2       
62                                                  1       
63                                                  1       
64                                                  1       
65                                                  3       
66                                                  2       
67                                                  1       
68                                                  2       
69                                                  1       
70                                                  1       
71                                                  1       
72                                                  1       
73                                                  1       
74                                                  1       
75                                                  1       
76                                                  1       
77                                                  1       
78                                                  2       
79                                                  1       
80                                                  1       
81                                                  1       
82                                                  1       
83                                                  1       
84                                                  1       
85                                                  1       
86                                                  1       
87                                                  3       
88                                                  1       
89                                                  1       
90                                                  1       
91                                                  3       
92                                                  1       
93                                                  3       
94                                                  1       
95                                                  1       
96                                                  2       

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).10  \
0   When I am in class, I feel wide-awake (1=Never...        
1                                             casq_11        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   3        
7                                                   1        
8                                                   3        
9                                                   1        
10                                                  3        
11                                                  2        
12                                                  1        
13                                                  3        
14                                                  1        
15                                                  3        
16                                                  2        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  3        
21                                                  2        
22                                                  2        
23                                                  2        
24                                                  3        
25                                                  2        
26                                                  2        
27                                                  2        
28                                                  2        
29                                                  2        
30                                                  1        
31                                                  2        
32                                                  1        
33                                                  3        
34                                                  3        
35                                                  2        
36                                                  2        
37                                                  4        
38                                                  2        
39                                                  2        
40                                                  2        
41                                                  3        
42                                                  2        
43                                                  1        
44                                                  3        
45                                                  2        
46                                                  2        
47                                                  3        
48                                                  2        
49                                                  1        
50                                                  3        
51                                                  1        
52                                                  2        
53                                                  1        
54                                                  2        
55                                                  4        
56                                                  3        
57                                                  3        
58                                                  1        
59                                                  2        
60                                                  2        
61                                                  3        
62                                                  2        
63                                                  2        
64                                                  2        
65                                                  2        
66                                                  3        
67                                                  3        
68                                                  4        
69                                                  4        
70                                                  5        
71                                                  3        
72                                                  4        
73                                                  3        
74                                                  4        
75                                                  4        
76                                                  3        
77                                                  4        
78                                                  2        
79                                                  3        
80                                                  2        
81                                                  5        
82                                                  5        
83                                                  3        
84                                                  2        
85                                                  3        
86                                                  4        
87                                                  4        
88                                                  3        
89                                                  2        
90                                                  3        
91                                                  3        
92                                                  5        
93                                                  2        
94                                                  3        
95                                                  5        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).11  \
0   I feel sleepy when I do my homework in the eve...        
1                                             casq_12        
2                                                   2        
3                                                   3        
4                                                   3        
5                                                   2        
6                                                   4        
7                                                   2        
8                                                   4        
9                                                   3        
10                                                  4        
11                                                  4        
12                                                  3        
13                                                  4        
14                                                  1        
15                                                  5        
16                                                  2        
17                                                  4        
18                                                  3        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  3        
23                                                  4        
24                                                  5        
25                                                  4        
26                                                  4        
27                                                  3        
28                                                  4        
29                                                  1        
30                                                  3        
31                                                  5        
32                                                  1        
33                                                  3        
34                                                  4        
35                                                  4        
36                                                  4        
37                                                  5        
38                                                  3        
39                                                  1        
40                                                  2        
41                                                  3        
42                                                  3        
43                                                  5        
44                                                  4        
45                                                  3        
46                                                  2        
47                                                  3        
48                                                  4        
49                                                  2        
50                                                  3        
51                                                  2        
52                                                  3        
53                                                  2        
54                                                  5        
55                                                  5        
56                                                  3        
57                                                  3        
58                                                  2        
59                                                  2        
60                                                  4        
61                                                  3        
62                                                  4        
63                                                  3        
64                                                  4        
65                                                  5        
66                                                  4        
67                                                  5        
68                                                  3        
69                                                  3        
70                                                  1        
71                                                  4        
72                                                  2        
73                                                  4        
74                                                  1        
75                                                  3        
76                                                  2        
77                                                  3        
78                                                  4        
79                                                  4        
80                                                  4        
81                                                  1        
82                                                  1        
83                                                  4        
84                                                  3        
85                                                  2        
86                                                  3        
87                                                  2        
88                                                  3        
89                                                  2        
90                                                  2        
91                                                  2        
92                                                  1        
93                                                  2        
94                                                  3        
95                                                  3        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).12  \
0   I feel wide-awake the last class of the day (1...        
1                                             casq_13        
2                                                   3        
3                                                   2        
4                                                   1        
5                                                   1        
6                                                   4        
7                                                   1        
8                                                   4        
9                                                   1        
10                                                  3        
11                                                  3        
12                                                  1        
13                                                  3        
14                                                  1        
15                                                  4        
16                                                  3        
17                                                  1        
18                                                  2        
19                                                  1        
20                                                  4        
21                                                  2        
22                                                  2        
23                                                  4        
24                                                  4        
25                                                  4        
26                                                  3        
27                                                  2        
28                                                  3        
29                                                  3        
30                                                  1        
31                                                  3        
32                                                  2        
33                                                  3        
34                                                  4        
35                                                  2        
36                                                  4        
37                                                  4        
38                                                  2        
39                                                  2        
40                                                  2        
41                                                  2        
42                                                  2        
43                                                  2        
44                                                  3        
45                                                  2        
46                                                  2        
47                                                  2        
48                                                  3        
49                                                  1        
50                                                  4        
51                                                  1        
52                                                  4        
53                                                  1        
54                                                  3        
55                                                  4        
56                                                  4        
57                                                  3        
58                                                  2        
59                                                  2        
60                                                  2        
61                                                  3        
62                                                  2        
63                                                  2        
64                                                  3        
65                                                  3        
66                                                  3        
67                                                  3        
68                                                  4        
69                                                  4        
70                                                  5        
71                                                  3        
72                                                  4        
73                                                  3        
74                                                  4        
75                                                  5        
76                                                  2        
77                                                  3        
78                                                  2        
79                                                  1        
80                                                  2        
81                                                  5        
82                                                  5        
83                                                  3        
84                                                  2        
85                                                  5        
86                                                  4        
87                                                  4        
88                                                  4        
89                                                  1        
90                                                  3        
91                                                  2        
92                                                  5        
93                                                  3        
94                                                  3        
95                                                  5        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).13  \
0   I fall asleep when I ride in a bus, car, or tr...        
1                                             casq_14        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   4        
7                                                   4        
8                                                   2        
9                                                   2        
10                                                  2        
11                                                  2        
12                                                  1        
13                                                  4        
14                                                  1        
15                                                  2        
16                                                  4        
17                                                  1        
18                                                  2        
19                                                  1        
20                                                  1        
21                                                  2        
22                                                  3        
23                                                  2        
24                                                  3        
25                                                  2        
26                                                  1        
27                                                  1        
28                                                  3        
29                                                  2        
30                                                  2        
31                                                  2        
32                                                  2        
33                                                  2        
34                                                  3        
35                                                  2        
36                                                  2        
37                                                  3        
38                                                  3        
39                                                  1        
40                                                  3        
41                                                  2        
42                                                  1        
43                                                  1        
44                                                  2        
45                                                  2        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  2        
50                                                  1        
51                                                  1        
52                                                  2        
53                                                  1        
54                                                  2        
55                                                  4        
56                                                  1        
57                                                  2        
58                                                  1        
59                                                  2        
60                                                  1        
61                                                  1        
62                                                  3        
63                                                  2        
64                                                  2        
65                                                  4        
66                                                  2        
67                                                  2        
68                                                  2        
69                                                  1        
70                                                  2        
71                                                  3        
72                                                  3        
73                                                  1        
74                                                  2        
75                                                  2        
76                                                  1        
77                                                  1        
78                                                  5        
79                                                  1        
80                                                  1        
81                                                  2        
82                                                  1        
83                                                  3        
84                                                  2        
85                                                  2        
86                                                  1        
87                                                  1        
88                                                  3        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  3        
94                                                  2        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).14  \
0   During the school day, there are times when I ...        
1                                             casq_15        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  2        
16                                                  1        
17                                                  2        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  3        
25                                                  1        
26                                                  2        
27                                                  1        
28                                                  2        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  2        
35                                                  2        
36                                                  2        
37                                                  1        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  2        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  1        
50                                                  2        
51                                                  1        
52                                                  3        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  2        
60                                                  2        
61                                                  2        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  3        
66                                                  3        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  2        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  1        
78                                                  2        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  3        
84                                                  2        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  4        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).15  \
0   I fall asleep when I do schoolwork at home in ...        
1                                             casq_16        
2                                                   1        
3                                                   1        
4                                                   2        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   3        
9                                                   1        
10                                                  1        
11                                                  2        
12                                                  2        
13                                                  3        
14                                                  1        
15                                                  2        
16                                                  2        
17                                                  2        
18                                                  1        
19                                                  2        
20                                                  2        
21                                                  1        
22                                                  3        
23                                                  2        
24                                                  4        
25                                                  2        
26                                                  2        
27                                                  2        
28                                                  3        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  4        
37                                                  2        
38                                                  1        
39                                                  1        
40                                                  2        
41                                                  2        
42                                                  1        
43                                                  5        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  2        
48                                                  1        
49                                                  1        
50                                                  2        
51                                                  2        
52                                                  3        
53                                                  1        
54                                                  1        
55                                                  4        
56                                                  1        
57                                                  2        
58                                                  2        
59                                                  2        
60                                                  3        
61                                                  1        
62                                                  2        
63                                                  1        
64                                                  1        
65                                                  2        
66                                                  3        
67                                                  2        
68                                                  2        
69                                                  2        
70                                                  1        
71                                                  1        
72                                                  2        
73                                                  2        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  1        
78                                                  1        
79                                                  4        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  3        
84                                                  2        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  3        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).16  \
0   I try to grow as a person as a result of the e...        
1                                              cope_1        
2                                                   4        
3                                                   4        
4                                                   3        
5                                                   3        
6                                                   3        
7                                                   4        
8                                                   4        
9                                                   4        
10                                                  3        
11                                                  4        
12                                                  3        
13                                                  2        
14                                                  4        
15                                                  4        
16                                                  4        
17                                                  3        
18                                                  3        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  3        
23                                                  4        
24                                                  4        
25                                                  4        
26                                                  4        
27                                                  4        
28                                                  3        
29                                                  3        
30                                                  4        
31                                                  2        
32                                                  4        
33                                                  3        
34                                                  3        
35                                                  3        
36                                                  4        
37                                                  3        
38                                                  3        
39                                                  2        
40                                                  3        
41                                                  4        
42                                                  4        
43                                                  3        
44                                                  4        
45                                                  4        
46                                                  4        
47                                                  4        
48                                                  4        
49                                                  1        
50                                                  4        
51                                                  2        
52                                                  4        
53                                                  2        
54                                                  3        
55                                                  4        
56                                                  3        
57                                                  3        
58                                                  2        
59                                                  4        
60                                                  3        
61                                                  4        
62                                                  3        
63                                                  4        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  3        
68                                                  4        
69                                                  2        
70                                                  4        
71                                                  3        
72                                                  1        
73                                                  3        
74                                                  2        
75                                                  2        
76                                                  3        
77                                                  3        
78                                                  3        
79                                                  3        
80                                                  4        
81                                                  4        
82                                                  4        
83                                                  2        
84                                                  3        
85                                                  3        
86                                                  4        
87                                                  3        
88                                                  4        
89                                                  2        
90                                                  3        
91                                                  3        
92                                                  2        
93                                                  3        
94                                                  4        
95                                                  4        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).17  \
0   I turn to work or other substitute activities ...        
1                                              cope_2        
2                                                   3        
3                                                   4        
4                                                   2        
5                                                   2        
6                                                   2        
7                                                   4        
8                                                   4        
9                                                   2        
10                                                  3        
11                                                  2        
12                                                  4        
13                                                  2        
14                                                  3        
15                                                  3        
16                                                  3        
17                                                  4        
18                                                  2        
19                                                  3        
20                                                  4        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  2        
25                                                  3        
26                                                  2        
27                                                  2        
28                                                  4        
29                                                  4        
30                                                  3        
31                                                  4        
32                                                  1        
33                                                  2        
34                                                  1        
35                                                  4        
36                                                  3        
37                                                  4        
38                                                  3        
39                                                  1        
40                                                  4        
41                                                  3        
42                                                  4        
43                                                  2        
44                                                  2        
45                                                  4        
46                                                  3        
47                                                  3        
48                                                  4        
49                                                  2        
50                                                  4        
51                                                  1        
52                                                  2        
53                                                  3        
54                                                  3        
55                                                  2        
56                                                  3        
57                                                  4        
58                                                  2        
59                                                  4        
60                                                  3        
61                                                  2        
62                                                  2        
63                                                  4        
64                                                  4        
65                                                  4        
66                                                  1        
67                                                  4        
68                                                  3        
69                                                  4        
70                                                  4        
71                                                  3        
72                                                  1        
73                                                  2        
74                                                  3        
75                                                  3        
76                                                  3        
77                                                  2        
78                                                  4        
79                                                  4        
80                                                  1        
81                                                  1        
82                                                  2        
83                                                  2        
84                                                  3        
85                                                  3        
86                                                  3        
87                                                  4        
88                                                  4        
89                                                  2        
90                                                  4        
91                                                  3        
92                                                  3        
93                                                  2        
94                                                  4        
95                                                  3        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).18  \
0   I get upset and let my emotions out. (1=I usua...        
1                                              cope_3        
2                                                   1        
3                                                   1        
4                                                   3        
5                                                   4        
6                                                   1        
7                                                   3        
8                                                   2        
9                                                   1        
10                                                  3        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  1        
17                                                  1        
18                                                  2        
19                                                  2        
20                                                  3        
21                                                  2        
22                                                  2        
23                                                  2        
24                                                  3        
25                                                  2        
26                                                  2        
27                                                  4        
28                                                  2        
29                                                  2        
30                                                  2        
31                                                  2        
32                                                  2        
33                                                  2        
34                                                  2        
35                                                  4        
36                                                  4        
37                                                  4        
38                                                  1        
39                                                  1        
40                                                  2        
41                                                  2        
42                                                  1        
43                                                  3        
44                                                  2        
45                                                  2        
46                                                  2        
47                                                  1        
48                                                  3        
49                                                  3        
50                                                  3        
51                                                  4        
52                                                  3        
53                                                  1        
54                                                  1        
55                                                  2        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  3        
60                                                  2        
61                                                  2        
62                                                  2        
63                                                  2        
64                                                  2        
65                                                  3        
66                                                  2        
67                                                  1        
68                                                  2        
69                                                  1        
70                                                  1        
71                                                  3        
72                                                  2        
73                                                  2        
74                                                  3        
75                                                  3        
76                                                  1        
77                                                  1        
78                                                  4        
79                                                  2        
80                                                  3        
81                                                  1        
82                                                  2        
83                                                  2        
84                                                  2        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  2        
89                                                  3        
90                                                  2        
91                                                  4        
92                                                  2        
93                                                  2        
94                                                  2        
95                                                  2        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).19  \
0   I try to get advice from someone about what to...        
1                                              cope_4        
2                                                   4        
3                                                   2        
4                                                   4        
5                                                   3        
6                                                   1        
7                                                   4        
8                                                   2        
9                                                   4        
10                                                  3        
11                                                  2        
12                                                  1        
13                                                  3        
14                                                  2        
15                                                  2        
16                                                  3        
17                                                  1        
18                                                  3        
19                                                  2        
20                                                  3        
21                                                  3        
22                                                  4        
23                                                  3        
24                                                  4        
25                                                  4        
26                                                  4        
27                                                  4        
28                                                  4        
29                                                  1        
30                                                  2        
31                                                  4        
32                                                  3        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  3        
37                                                  2        
38                                                  2        
39                                                  2        
40                                                  2        
41                                                  3        
42                                                  1        
43                                                  3        
44                                                  2        
45                                                  3        
46                                                  4        
47                                                  2        
48                                                  3        
49                                                  3        
50                                                  2        
51                                                  4        
52                                                  2        
53                                                  3        
54                                                  2        
55                                                  4        
56                                                  3        
57                                                  2        
58                                                  2        
59                                                  2        
60                                                  3        
61                                                  3        
62                                                  2        
63                                                  3        
64                                                  3        
65                                                  2        
66                                                  3        
67                                                  2        
68                                                  3        
69                                                  3        
70                                                  4        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  2        
75                                                  1        
76                                                  1        
77                                                  3        
78                                                  4        
79                                                  4        
80                                                  3        
81                                                  3        
82                                                  4        
83                                                  2        
84                                                  2        
85                                                  3        
86                                                  2        
87                                                  2        
88                                                  3        
89                                                  4        
90                                                  3        
91                                                  1        
92                                                  2        
93                                                  3        
94                                                  1        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).20  \
0   I concentrate my efforts on doing something ab...        
1                                              cope_5        
2                                                   4        
3                                                   3        
4                                                   1        
5                                                   3        
6                                                   2        
7                                                   4        
8                                                   3        
9                                                   4        
10                                                  2        
11                                                  3        
12                                                  1        
13                                                  3        
14                                                  4        
15                                                  4        
16                                                  3        
17                                                  2        
18                                                  3        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  3        
25                                                  4        
26                                                  4        
27                                                  4        
28                                                  3        
29                                                  2        
30                                                  4        
31                                                  2        
32                                                  4        
33                                                  3        
34                                                  2        
35                                                  2        
36                                                  2        
37                                                  4        
38                                                  2        
39                                                  2        
40                                                  4        
41                                                  2        
42                                                  3        
43                                                  2        
44                                                  2        
45                                                  2        
46                                                  3        
47                                                  1        
48                                                  3        
49                                                  4        
50                                                  2        
51                                                  2        
52                                                  3        
53                                                  3        
54                                                  2        
55                                                  2        
56                                                  3        
57                                                  2        
58                                                  3        
59                                                  3        
60                                                  2        
61                                                  3        
62                                                  4        
63                                                  3        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  2        
68                                                  4        
69                                                  3        
70                                                  3        
71                                                  4        
72                                                  1        
73                                                  4        
74                                                  4        
75                                                  1        
76                                                  4        
77                                                  2        
78                                                  3        
79                                                  2        
80                                                  3        
81                                                  4        
82                                                  2        
83                                                  2        
84                                                  2        
85                                                  3        
86                                                  3        
87                                                  4        
88                                                  4        
89                                                  4        
90                                                  2        
91                                                  3        
92                                                  3        
93                                                  3        
94                                                  3        
95                                                  4        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).21  \
0   I say to myself 'this isn't real.' (1=I usuall...        
1                                              cope_6        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  1        
16                                                  1        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  2        
23                                                  1        
24                                                  1        
25                                                  2        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  1        
37                                                  1        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  2        
60                                                  2        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  3        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  1        
73                                                  2        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  1        
84                                                  1        
85                                                  2        
86                                                  1        
87                                                  1        
88                                                  4        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  1        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).22  \
0   I put my trust in God. (1=I usually don't do t...        
1                                              cope_7        
2                                                   2        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   2        
8                                                   1        
9                                                   2        
10                                                  1        
11                                                  1        
12                                                  3        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  3        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  1        
25                                                  1        
26                                                  2        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  4        
31                                                  2        
32                                                  1        
33                                                  2        
34                                                  2        
35                                                  1        
36                                                  2        
37                                                  1        
38                                                  2        
39                                                  2        
40                                                  1        
41                                                  1        
42                                                  2        
43                                                  2        
44                                                  2        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  3        
49                                                  1        
50                                                  2        
51                                                  1        
52                                                  3        
53                                                  1        
54                                                  1        
55                                                  4        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  3        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  2        
68                                                  1        
69                                                  1        
70                                                  3        
71                                                  1        
72                                                  1        
73                                                  4        
74                                                  2        
75                                                  2        
76                                                  1        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  3        
81                                                  1        
82                                                  2        
83                                                  1        
84                                                  3        
85                                                  1        
86                                                  1        
87                                                  3        
88                                                  1        
89                                                  2        
90                                                  1        
91                                                  2        
92                                                  1        
93                                                  1        
94                                                  2        
95                                                  3        
96                                                  1        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).23  \
0   I laugh about the situation. (1=I usually don'...        
1                                              cope_8        
2                                                   4        
3                                                   1        
4                                                   2        
5                                                   2        
6                                                   1        
7                                                   2        
8                                                   3        
9                                                   1        
10                                                  2        
11                                                  1        
12                                                  2        
13                                                  2        
14                                                  1        
15                                                  4        
16                                                  3        
17                                                  2        
18                                                  2        
19                                                  4        
20                                                  2        
21                                                  2        
22                                                  3        
23                                                  3        
24                                                  1        
25                                                  4        
26                                                  4        
27                                                  2        
28                                                  2        
29                                                  1        
30                                                  4        
31                                                  3        
32                                                  2        
33                                                  2        
34                                                  2        
35                                                  1        
36                                                  2        
37                                                  2        
38                                                  3        
39                                                  4        
40                                                  4        
41                                                  2        
42                                                  3        
43                                                  4        
44                                                  2        
45                                                  2        
46                                                  1        
47                                                  3        
48                                                  3        
49                                                  1        
50                                                  1        
51                                                  4        
52                                                  1        
53                                                  3        
54                                                  1        
55                                                  1        
56                                                  4        
57                                                  2        
58                                                  2        
59                                                  3        
60                                                  3        
61                                                  3        
62                                                  1        
63                                                  1        
64                                                  2        
65                                                  3        
66                                                  3        
67                                                  2        
68                                                  3        
69                                                  4        
70                                                  2        
71                                                  2        
72                                                  1        
73                                                  3        
74                                                  1        
75                                                  2        
76                                                  3        
77                                                  1        
78                                                  2        
79                                                  2        
80                                                  2        
81                                                  2        
82                                                  1        
83                                                  3        
84                                                  2        
85                                                  3        
86                                                  3        
87                                                  4        
88                                                  4        
89                                                  3        
90                                                  2        
91                                                  1        
92                                                  2        
93                                                  4        
94                                                  4        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).24  \
0   I admit to myself that I can't deal with it, a...        
1                                              cope_9        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   2        
9                                                   1        
10                                                  2        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  1        
17                                                  1        
18                                                  1        
19                                                  2        
20                                                  2        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  2        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  2        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  3        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  3        
48                                                  2        
49                                                  1        
50                                                  2        
51                                                  2        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  2        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  2        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  2        
76                                                  1        
77                                                  2        
78                                                  1        
79                                                  2        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  3        
84                                                  1        
85                                                  4        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  2        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  2        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).25  \
0   I restrain myself from doing anything too quic...        
1                                             cope_10        
2                                                   4        
3                                                   3        
4                                                   1        
5                                                   2        
6                                                   2        
7                                                   3        
8                                                   1        
9                                                   3        
10                                                  2        
11                                                  2        
12                                                  3        
13                                                  2        
14                                                  1        
15                                                  3        
16                                                  2        
17                                                  2        
18                                                  3        
19                                                  1        
20                                                  2        
21                                                  3        
22                                                  2        
23                                                  3        
24                                                  2        
25                                                  3        
26                                                  3        
27                                                  3        
28                                                  2        
29                                                  1        
30                                                  2        
31                                                  3        
32                                                  3        
33                                                  2        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  1        
38                                                  2        
39                                                  2        
40                                                  3        
41                                                  3        
42                                                  2        
43                                                  2        
44                                                  1        
45                                                  2        
46                                                  2        
47                                                  2        
48                                                  2        
49                                                  2        
50                                                  2        
51                                                  3        
52                                                  2        
53                                                  1        
54                                                  3        
55                                                  2        
56                                                  2        
57                                                  3        
58                                                  3        
59                                                  1        
60                                                  2        
61                                                  2        
62                                                  2        
63                                                  2        
64                                                  2        
65                                                  2        
66                                                  1        
67                                                  2        
68                                                  3        
69                                                  3        
70                                                  2        
71                                                  3        
72                                                  2        
73                                                  2        
74                                                  2        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  2        
79                                                  2        
80                                                  2        
81                                                  2        
82                                                  2        
83                                                  2        
84                                                  4        
85                                                  2        
86                                                  3        
87                                                  3        
88                                                  2        
89                                                  3        
90                                                  1        
91                                                  1        
92                                                  2        
93                                                  3        
94                                                  1        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).26  \
0   I discuss my feelings with someone. (1=I usual...        
1                                             cope_11        
2                                                   4        
3                                                   2        
4                                                   4        
5                                                   4        
6                                                   3        
7                                                   3        
8                                                   2        
9                                                   4        
10                                                  3        
11                                                  1        
12                                                  1        
13                                                  3        
14                                                  2        
15                                                  1        
16                                                  3        
17                                                  1        
18                                                  3        
19                                                  3        
20                                                  2        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  4        
25                                                  4        
26                                                  4        
27                                                  4        
28                                                  4        
29                                                  1        
30                                                  2        
31                                                  4        
32                                                  3        
33                                                  2        
34                                                  3        
35                                                  4        
36                                                  3        
37                                                  4        
38                                                  1        
39                                                  1        
40                                                  2        
41                                                  4        
42                                                  2        
43                                                  3        
44                                                  2        
45                                                  3        
46                                                  4        
47                                                  2        
48                                                  2        
49                                                  3        
50                                                  3        
51                                                  4        
52                                                  3        
53                                                  2        
54                                                  2        
55                                                  3        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  3        
60                                                  3        
61                                                  2        
62                                                  2        
63                                                  3        
64                                                  2        
65                                                  3        
66                                                  2        
67                                                  1        
68                                                  2        
69                                                  2        
70                                                  4        
71                                                  4        
72                                                  1        
73                                                  4        
74                                                  3        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  4        
79                                                  4        
80                                                  4        
81                                                  2        
82                                                  4        
83                                                  2        
84                                                  3        
85                                                  2        
86                                                  2        
87                                                  1        
88                                                  1        
89                                                  4        
90                                                  2        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  2        
95                                                  3        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).27  \
0   I use alcohol or drugs to make myself feel bet...        
1                                             cope_12        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   2        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  4        
16                                                  1        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  1        
23                                                  1        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  1        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  1        
84                                                  1        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  1        
95                                                  1        
96                                                  1        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).28  \
0   I get used to the idea that it happened. (1=I ...        
1                                             cope_13        
2                                                   1        
3                                                   3        
4                                                   2        
5                                                   1        
6                                                   1        
7                                                   2        
8                                                   3        
9                                                   1        
10                                                  3        
11                                                  3        
12                                                  2        
13                                                  2        
14                                                  1        
15                                                  4        
16                                                  2        
17                                                  3        
18                                                  2        
19                                                  3        
20                                                  3        
21                                                  2        
22                                                  3        
23                                                  3        
24                                                  3        
25                                                  1        
26                                                  4        
27                                                  3        
28                                                  2        
29                                                  1        
30                                                  3        
31                                                  3        
32                                                  3        
33                                                  4        
34                                                  2        
35                                                  2        
36                                                  3        
37                                                  3        
38                                                  3        
39                                                  2        
40                                                  3        
41                                                  4        
42                                                  2        
43                                                  2        
44                                                  2        
45                                                  3        
46                                                  2        
47                                                  1        
48                                                  2        
49                                                  2        
50                                                  2        
51                                                  3        
52                                                  1        
53                                                  3        
54                                                  3        
55                                                  3        
56                                                  2        
57                                                  3        
58                                                  4        
59                                                  3        
60                                                  3        
61                                                  2        
62                                                  1        
63                                                  2        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  3        
68                                                  3        
69                                                  2        
70                                                  2        
71                                                  4        
72                                                  1        
73                                                  1        
74                                                  3        
75                                                  2        
76                                                  3        
77                                                  2        
78                                                  2        
79                                                  2        
80                                                  3        
81                                                  3        
82                                                  2        
83                                                  4        
84                                                  2        
85                                                  3        
86                                                  4        
87                                                  2        
88                                                  2        
89                                                  2        
90                                                  3        
91                                                  2        
92                                                  1        
93                                                  2        
94                                                  2        
95                                                  4        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).29  \
0   I talk to someone to find out more about the s...        
1                                             cope_14        
2                                                   1        
3                                                   3        
4                                                   3        
5                                                   2        
6                                                   2        
7                                                   3        
8                                                   2        
9                                                   2        
10                                                  3        
11                                                  2        
12                                                  1        
13                                                  3        
14                                                  2        
15                                                  3        
16                                                  2        
17                                                  1        
18                                                  3        
19                                                  4        
20                                                  3        
21                                                  3        
22                                                  3        
23                                                  4        
24                                                  4        
25                                                  4        
26                                                  3        
27                                                  4        
28                                                  3        
29                                                  1        
30                                                  3        
31                                                  4        
32                                                  3        
33                                                  1        
34                                                  3        
35                                                  2        
36                                                  4        
37                                                  4        
38                                                  2        
39                                                  1        
40                                                  2        
41                                                  2        
42                                                  3        
43                                                  3        
44                                                  1        
45                                                  3        
46                                                  4        
47                                                  3        
48                                                  4        
49                                                  4        
50                                                  2        
51                                                  1        
52                                                  3        
53                                                  2        
54                                                  3        
55                                                  1        
56                                                  3        
57                                                  1        
58                                                  2        
59                                                  4        
60                                                  3        
61                                                  3        
62                                                  2        
63                                                  3        
64                                                  3        
65                                                  3        
66                                                  3        
67                                                  1        
68                                                  4        
69                                                  3        
70                                                  4        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  2        
75                                                  1        
76                                                  1        
77                                                  3        
78                                                  4        
79                                                  4        
80                                                  4        
81                                                  4        
82                                                  2        
83                                                  2        
84                                                  2        
85                                                  1        
86                                                  4        
87                                                  2        
88                                                  4        
89                                                  4        
90                                                  2        
91                                                  2        
92                                                  1        
93                                                  3        
94                                                  2        
95                                                  3        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).30  \
0   I keep myself from getting distracted by other...        
1                                             cope_15        
2                                                   4        
3                                                   2        
4                                                   3        
5                                                   2        
6                                                   2        
7                                                   2        
8                                                   4        
9                                                   1        
10                                                  1        
11                                                  2        
12                                                  3        
13                                                  2        
14                                                  2        
15                                                  2        
16                                                  2        
17                                                  1        
18                                                  3        
19                                                  2        
20                                                  4        
21                                                  2        
22                                                  3        
23                                                  2        
24                                                  1        
25                                                  2        
26                                                  1        
27                                                  2        
28                                                  2        
29                                                  1        
30                                                  3        
31                                                  2        
32                                                  4        
33                                                  3        
34                                                  2        
35                                                  2        
36                                                  1        
37                                                  2        
38                                                  2        
39                                                  2        
40                                                  2        
41                                                  1        
42                                                  1        
43                                                  3        
44                                                  1        
45                                                  3        
46                                                  2        
47                                                  1        
48                                                  4        
49                                                  3        
50                                                  3        
51                                                  3        
52                                                  2        
53                                                  2        
54                                                  2        
55                                                  1        
56                                                  2        
57                                                  2        
58                                                  2        
59                                                  2        
60                                                  2        
61                                                  2        
62                                                  2        
63                                                  3        
64                                                  2        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  2        
69                                                  2        
70                                                  4        
71                                                  3        
72                                                  1        
73                                                  2        
74                                                  1        
75                                                  2        
76                                                  2        
77                                                  2        
78                                                  1        
79                                                  4        
80                                                  2        
81                                                  3        
82                                                  2        
83                                                  2        
84                                                  2        
85                                                  2        
86                                                  2        
87                                                  2        
88                                                  1        
89                                                  3        
90                                                  2        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  2        
95                                                  2        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).31  \
0   I daydream about things other than this. (1=I ...        
1                                             cope_16        
2                                                   1        
3                                                   2        
4                                                   1        
5                                                   2        
6                                                   2        
7                                                   2        
8                                                   3        
9                                                   1        
10                                                  2        
11                                                  2        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  3        
16                                                  2        
17                                                  3        
18                                                  2        
19                                                  2        
20                                                  3        
21                                                  1        
22                                                  3        
23                                                  4        
24                                                  1        
25                                                  4        
26                                                  2        
27                                                  1        
28                                                  3        
29                                                  1        
30                                                  1        
31                                                  2        
32                                                  1        
33                                                  3        
34                                                  1        
35                                                  4        
36                                                  2        
37                                                  4        
38                                                  3        
39                                                  3        
40                                                  2        
41                                                  4        
42                                                  1        
43                                                  3        
44                                                  1        
45                                                  3        
46                                                  3        
47                                                  3        
48                                                  2        
49                                                  1        
50                                                  1        
51                                                  2        
52                                                  1        
53                                                  2        
54                                                  3        
55                                                  4        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  2        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  2        
66                                                  2        
67                                                  2        
68                                                  1        
69                                                  2        
70                                                  1        
71                                                  3        
72                                                  2        
73                                                  3        
74                                                  1        
75                                                  3        
76                                                  3        
77                                                  4        
78                                                  1        
79                                                  2        
80                                                  3        
81                                                  2        
82                                                  1        
83                                                  3        
84                                                  1        
85                                                  4        
86                                                  2        
87                                                  2        
88                                                  4        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  3        
94                                                  2        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).32  \
0   I get upset, and am really aware of it. (1=I u...        
1                                             cope_17        
2                                                   1        
3                                                   1        
4                                                   2        
5                                                   3        
6                                                   2        
7                                                   2        
8                                                   2        
9                                                   1        
10                                                  2        
11                                                  2        
12                                                  1        
13                                                  3        
14                                                  1        
15                                                  2        
16                                                  2        
17                                                  1        
18                                                  2        
19                                                  2        
20                                                  3        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  3        
25                                                  2        
26                                                  2        
27                                                  3        
28                                                  2        
29                                                  1        
30                                                  2        
31                                                  2        
32                                                  3        
33                                                  2        
34                                                  2        
35                                                  4        
36                                                  3        
37                                                  3        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  3        
42                                                  1        
43                                                  2        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  2        
48                                                  2        
49                                                  2        
50                                                  1        
51                                                  4        
52                                                  2        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  2        
59                                                  3        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  2        
64                                                  2        
65                                                  3        
66                                                  2        
67                                                  1        
68                                                  4        
69                                                  3        
70                                                  1        
71                                                  4        
72                                                  1        
73                                                  2        
74                                                  2        
75                                                  2        
76                                                  2        
77                                                  3        
78                                                  3        
79                                                  3        
80                                                  2        
81                                                  1        
82                                                  1        
83                                                  3        
84                                                  3        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  3        
90                                                  2        
91                                                  3        
92                                                  2        
93                                                  2        
94                                                  2        
95                                                  3        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).33  \
0   I seek God's help. (1=I usually don't do this ...        
1                                             cope_18        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   2        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  2        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  3        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  1        
23                                                  2        
24                                                  1        
25                                                  1        
26                                                  2        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  4        
31                                                  2        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  1        
37                                                  1        
38                                                  2        
39                                                  2        
40                                                  1        
41                                                  1        
42                                                  2        
43                                                  1        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  2        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  2        
53                                                  1        
54                                                  1        
55                                                  4        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  3        
71                                                  1        
72                                                  1        
73                                                  4        
74                                                  2        
75                                                  2        
76                                                  1        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  3        
81                                                  1        
82                                                  2        
83                                                  1        
84                                                  2        
85                                                  1        
86                                                  1        
87                                                  2        
88                                                  1        
89                                                  2        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  2        
95                                                  2        
96                                                  1        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).34  \
0   I make a plan of action. (1=I usually don't do...        
1                                             cope_19        
2                                                   1        
3                                                   3        
4                                                   1        
5                                                   2        
6                                                   3        
7                                                   3        
8                                                   3        
9                                                   1        
10                                                  2        
11                                                  2        
12                                                  1        
13                                                  2        
14                                                  3        
15                                                  4        
16                                                  3        
17                                                  4        
18                                                  2        
19                                                  2        
20                                                  3        
21                                                  4        
22                                                  2        
23                                                  2        
24                                                  4        
25                                                  4        
26                                                  4        
27                                                  2        
28                                                  3        
29                                                  3        
30                                                  2        
31                                                  4        
32                                                  3        
33                                                  1        
34                                                  1        
35                                                  2        
36                                                  3        
37                                                  3        
38                                                  2        
39                                                  2        
40                                                  3        
41                                                  3        
42                                                  1        
43                                                  2        
44                                                  2        
45                                                  3        
46                                                  2        
47                                                  2        
48                                                  2        
49                                                  3        
50                                                  3        
51                                                  2        
52                                                  4        
53                                                  1        
54                                                  3        
55                                                  2        
56                                                  3        
57                                                  2        
58                                                  2        
59                                                  3        
60                                                  3        
61                                                  2        
62                                                  4        
63                                                  3        
64                                                  3        
65                                                  1        
66                                                  2        
67                                                  1        
68                                                  4        
69                                                  4        
70                                                  3        
71                                                  3        
72                                                  1        
73                                                  4        
74                                                  3        
75                                                  1        
76                                                  3        
77                                                  3        
78                                                  3        
79                                                  1        
80                                                  3        
81                                                  3        
82                                                  1        
83                                                  1        
84                                                  2        
85                                                  2        
86                                                  3        
87                                                  3        
88                                                  3        
89                                                  4        
90                                                  1        
91                                                  2        
92                                                  2        
93                                                  3        
94                                                  4        
95                                                  4        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).35  \
0   I make jokes about it. (1=I usually don't do t...        
1                                             cope_20        
2                                                   3        
3                                                   2        
4                                                   2        
5                                                   2        
6                                                   3        
7                                                   2        
8                                                   3        
9                                                   1        
10                                                  2        
11                                                  1        
12                                                  2        
13                                                  2        
14                                                  1        
15                                                  4        
16                                                  3        
17                                                  3        
18                                                  2        
19                                                  4        
20                                                  2        
21                                                  2        
22                                                  3        
23                                                  3        
24                                                  1        
25                                                  4        
26                                                  4        
27                                                  2        
28                                                  2        
29                                                  1        
30                                                  4        
31                                                  2        
32                                                  2        
33                                                  2        
34                                                  2        
35                                                  1        
36                                                  4        
37                                                  1        
38                                                  3        
39                                                  4        
40                                                  2        
41                                                  4        
42                                                  2        
43                                                  4        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  3        
48                                                  2        
49                                                  2        
50                                                  1        
51                                                  4        
52                                                  2        
53                                                  3        
54                                                  1        
55                                                  2        
56                                                  4        
57                                                  3        
58                                                  2        
59                                                  3        
60                                                  4        
61                                                  2        
62                                                  2        
63                                                  2        
64                                                  1        
65                                                  3        
66                                                  3        
67                                                  2        
68                                                  3        
69                                                  2        
70                                                  2        
71                                                  2        
72                                                  1        
73                                                  4        
74                                                  1        
75                                                  1        
76                                                  2        
77                                                  2        
78                                                  2        
79                                                  3        
80                                                  2        
81                                                  2        
82                                                  1        
83                                                  4        
84                                                  2        
85                                                  3        
86                                                  4        
87                                                  4        
88                                                  4        
89                                                  3        
90                                                  1        
91                                                  1        
92                                                  2        
93                                                  4        
94                                                  4        
95                                                  1        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).36  \
0   I accept that this has happened and that it ca...        
1                                             cope_21        
2                                                   2        
3                                                   4        
4                                                   3        
5                                                   1        
6                                                   1        
7                                                   2        
8                                                   4        
9                                                   1        
10                                                  4        
11                                                  2        
12                                                  2        
13                                                  2        
14                                                  1        
15                                                  4        
16                                                  2        
17                                                  3        
18                                                  2        
19                                                  3        
20                                                  4        
21                                                  4        
22                                                  3        
23                                                  2        
24                                                  2        
25                                                  2        
26                                                  4        
27                                                  3        
28                                                  2        
29                                                  3        
30                                                  3        
31                                                  2        
32                                                  2        
33                                                  3        
34                                                  2        
35                                                  2        
36                                                  4        
37                                                  2        
38                                                  2        
39                                                  2        
40                                                  3        
41                                                  4        
42                                                  4        
43                                                  4        
44                                                  1        
45                                                  4        
46                                                  2        
47                                                  3        
48                                                  3        
49                                                  2        
50                                                  2        
51                                                  4        
52                                                  2        
53                                                  3        
54                                                  2        
55                                                  2        
56                                                  3        
57                                                  2        
58                                                  3        
59                                                  1        
60                                                  3        
61                                                  2        
62                                                  2        
63                                                  2        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  3        
68                                                  3        
69                                                  3        
70                                                  2        
71                                                  4        
72                                                  3        
73                                                  1        
74                                                  1        
75                                                  2        
76                                                  3        
77                                                  2        
78                                                  4        
79                                                  2        
80                                                  3        
81                                                  4        
82                                                  4        
83                                                  4        
84                                                  3        
85                                                  4        
86                                                  4        
87                                                  3        
88                                                  3        
89                                                  3        
90                                                  3        
91                                                  2        
92                                                  2        
93                                                  3        
94                                                  3        
95                                                  4        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).37  \
0   I hold off doing anything about it until the s...        
1                                             cope_22        
2                                                   2        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   2        
7                                                   1        
8                                                   2        
9                                                   1        
10                                                  2        
11                                                  2        
12                                                  3        
13                                                  2        
14                                                  1        
15                                                  4        
16                                                  2        
17                                                  2        
18                                                  2        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  2        
23                                                  3        
24                                                  1        
25                                                  2        
26                                                  2        
27                                                  2        
28                                                  2        
29                                                  1        
30                                                  1        
31                                                  2        
32                                                  4        
33                                                  2        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  2        
38                                                  2        
39                                                  2        
40                                                  2        
41                                                  3        
42                                                  3        
43                                                  2        
44                                                  1        
45                                                  3        
46                                                  2        
47                                                  2        
48                                                  3        
49                                                  1        
50                                                  2        
51                                                  2        
52                                                  1        
53                                                  2        
54                                                  2        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  2        
59                                                  1        
60                                                  2        
61                                                  2        
62                                                  2        
63                                                  2        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  1        
68                                                  2        
69                                                  3        
70                                                  2        
71                                                  2        
72                                                  2        
73                                                  2        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  3        
78                                                  2        
79                                                  2        
80                                                  3        
81                                                  4        
82                                                  3        
83                                                  3        
84                                                  1        
85                                                  1        
86                                                  1        
87                                                  3        
88                                                  2        
89                                                  3        
90                                                  2        
91                                                  1        
92                                                  2        
93                                                  4        
94                                                  2        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).38  \
0   I try to get emotional support from friends or...        
1                                             cope_23        
2                                                   3        
3                                                   2        
4                                                   4        
5                                                   3        
6                                                   2        
7                                                   2        
8                                                   2        
9                                                   4        
10                                                  3        
11                                                  2        
12                                                  1        
13                                                  3        
14                                                  2        
15                                                  1        
16                                                  2        
17                                                  1        
18                                                  3        
19                                                  3        
20                                                  2        
21                                                  3        
22                                                  2        
23                                                  4        
24                                                  4        
25                                                  4        
26                                                  2        
27                                                  4        
28                                                  4        
29                                                  1        
30                                                  3        
31                                                  4        
32                                                  2        
33                                                  1        
34                                                  3        
35                                                  3        
36                                                  4        
37                                                  3        
38                                                  2        
39                                                  1        
40                                                  2        
41                                                  3        
42                                                  1        
43                                                  3        
44                                                  2        
45                                                  3        
46                                                  4        
47                                                  1        
48                                                  2        
49                                                  3        
50                                                  3        
51                                                  4        
52                                                  3        
53                                                  2        
54                                                  2        
55                                                  3        
56                                                  3        
57                                                  1        
58                                                  2        
59                                                  3        
60                                                  3        
61                                                  2        
62                                                  2        
63                                                  3        
64                                                  2        
65                                                  4        
66                                                  1        
67                                                  2        
68                                                  1        
69                                                  2        
70                                                  3        
71                                                  4        
72                                                  1        
73                                                  4        
74                                                  3        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  4        
79                                                  4        
80                                                  4        
81                                                  2        
82                                                  4        
83                                                  3        
84                                                  4        
85                                                  3        
86                                                  2        
87                                                  2        
88                                                  1        
89                                                  4        
90                                                  2        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  1        
95                                                  2        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).39  \
0   I just give up trying to reach my goal. (1=I u...        
1                                             cope_24        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   2        
9                                                   1        
10                                                  2        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  1        
16                                                  2        
17                                                  1        
18                                                  1        
19                                                  2        
20                                                  2        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  1        
37                                                  1        
38                                                  2        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  4        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  4        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  2        
56                                                  2        
57                                                  1        
58                                                  2        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  3        
76                                                  2        
77                                                  2        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  3        
84                                                  1        
85                                                  2        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  1        
95                                                  1        
96                                                  1        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).40  \
0   I take additional action to try to get rid of ...        
1                                             cope_25        
2                                                   1        
3                                                   4        
4                                                   1        
5                                                   3        
6                                                   3        
7                                                   2        
8                                                   1        
9                                                   3        
10                                                  2        
11                                                  3        
12                                                  3        
13                                                  2        
14                                                  4        
15                                                  4        
16                                                  3        
17                                                  4        
18                                                  2        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  2        
23                                                  3        
24                                                  2        
25                                                  3        
26                                                  2        
27                                                  3        
28                                                  3        
29                                                  2        
30                                                  4        
31                                                  3        
32                                                  2        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  3        
37                                                  3        
38                                                  2        
39                                                  2        
40                                                  3        
41                                                  3        
42                                                  3        
43                                                  2        
44                                                  2        
45                                                  1        
46                                                  2        
47                                                  2        
48                                                  3        
49                                                  3        
50                                                  2        
51                                                  2        
52                                                  1        
53                                                  2        
54                                                  2        
55                                                  2        
56                                                  3        
57                                                  3        
58                                                  3        
59                                                  1        
60                                                  3        
61                                                  2        
62                                                  3        
63                                                  3        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  2        
68                                                  4        
69                                                  3        
70                                                  4        
71                                                  3        
72                                                  1        
73                                                  3        
74                                                  2        
75                                                  2        
76                                                  2        
77                                                  2        
78                                                  3        
79                                                  3        
80                                                  2        
81                                                  4        
82                                                  1        
83                                                  1        
84                                                  3        
85                                                  3        
86                                                  2        
87                                                  3        
88                                                  2        
89                                                  2        
90                                                  2        
91                                                  2        
92                                                  3        
93                                                  3        
94                                                  3        
95                                                  2        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).41  \
0   I try to lose myself for a while by drinking a...        
1                                             cope_26        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   2        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  2        
16                                                  1        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  1        
23                                                  1        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  1        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  1        
84                                                  1        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  1        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).42  \
0   I refuse to believe that it has happened. (1=I...        
1                                             cope_27        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  3        
13                                                  1        
14                                                  1        
15                                                  1        
16                                                  2        
17                                                  1        
18                                                  1        
19                                                  2        
20                                                  1        
21                                                  1        
22                                                  2        
23                                                  1        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  1        
38                                                  2        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  2        
60                                                  2        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  1        
84                                                  2        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  3        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  2        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).43  \
0   I let my feelings out. (1=I usually don't do t...        
1                                             cope_28        
2                                                   2        
3                                                   1        
4                                                   4        
5                                                   4        
6                                                   1        
7                                                   3        
8                                                   3        
9                                                   3        
10                                                  3        
11                                                  1        
12                                                  1        
13                                                  3        
14                                                  1        
15                                                  1        
16                                                  1        
17                                                  2        
18                                                  2        
19                                                  3        
20                                                  2        
21                                                  2        
22                                                  2        
23                                                  3        
24                                                  3        
25                                                  4        
26                                                  2        
27                                                  3        
28                                                  2        
29                                                  3        
30                                                  3        
31                                                  2        
32                                                  2        
33                                                  3        
34                                                  2        
35                                                  4        
36                                                  4        
37                                                  3        
38                                                  1        
39                                                  1        
40                                                  2        
41                                                  3        
42                                                  1        
43                                                  2        
44                                                  2        
45                                                  2        
46                                                  3        
47                                                  1        
48                                                  2        
49                                                  3        
50                                                  2        
51                                                  4        
52                                                  3        
53                                                  1        
54                                                  2        
55                                                  2        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  3        
60                                                  3        
61                                                  2        
62                                                  2        
63                                                  2        
64                                                  2        
65                                                  3        
66                                                  2        
67                                                  1        
68                                                  2        
69                                                  2        
70                                                  2        
71                                                  4        
72                                                  1        
73                                                  2        
74                                                  2        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  4        
79                                                  3        
80                                                  4        
81                                                  2        
82                                                  2        
83                                                  2        
84                                                  3        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  3        
90                                                  2        
91                                                  4        
92                                                  1        
93                                                  2        
94                                                  1        
95                                                  4        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).44  \
0   I try to see it in a different light, to make ...        
1                                             cope_29        
2                                                   4        
3                                                   3        
4                                                   4        
5                                                   3        
6                                                   1        
7                                                   4        
8                                                   3        
9                                                   4        
10                                                  3        
11                                                  3        
12                                                  2        
13                                                  2        
14                                                  2        
15                                                  2        
16                                                  1        
17                                                  2        
18                                                  2        
19                                                  2        
20                                                  3        
21                                                  2        
22                                                  3        
23                                                  4        
24                                                  4        
25                                                  4        
26                                                  4        
27                                                  4        
28                                                  3        
29                                                  1        
30                                                  4        
31                                                  3        
32                                                  2        
33                                                  2        
34                                                  1        
35                                                  1        
36                                                  4        
37                                                  4        
38                                                  3        
39                                                  2        
40                                                  2        
41                                                  2        
42                                                  3        
43                                                  2        
44                                                  1        
45                                                  3        
46                                                  4        
47                                                  3        
48                                                  2        
49                                                  2        
50                                                  3        
51                                                  2        
52                                                  3        
53                                                  3        
54                                                  4        
55                                                  3        
56                                                  3        
57                                                  3        
58                                                  1        
59                                                  4        
60                                                  2        
61                                                  3        
62                                                  3        
63                                                  2        
64                                                  4        
65                                                  1        
66                                                  1        
67                                                  2        
68                                                  2        
69                                                  2        
70                                                  4        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  2        
75                                                  2        
76                                                  2        
77                                                  2        
78                                                  2        
79                                                  2        
80                                                  3        
81                                                  3        
82                                                  3        
83                                                  1        
84                                                  2        
85                                                  4        
86                                                  3        
87                                                  4        
88                                                  1        
89                                                  3        
90                                                  1        
91                                                  3        
92                                                  1        
93                                                  2        
94                                                  3        
95                                                  4        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).45  \
0   I talk to someone who could do something concr...        
1                                             cope_30        
2                                                   3        
3                                                   3        
4                                                   4        
5                                                   2        
6                                                   1        
7                                                   2        
8                                                   1        
9                                                   2        
10                                                  2        
11                                                  3        
12                                                  1        
13                                                  3        
14                                                  3        
15                                                  2        
16                                                  1        
17                                                  1        
18                                                  2        
19                                                  2        
20                                                  2        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  3        
25                                                  2        
26                                                  2        
27                                                  2        
28                                                  3        
29                                                  1        
30                                                  3        
31                                                  4        
32                                                  2        
33                                                  1        
34                                                  3        
35                                                  1        
36                                                  3        
37                                                  2        
38                                                  1        
39                                                  1        
40                                                  2        
41                                                  1        
42                                                  1        
43                                                  2        
44                                                  1        
45                                                  2        
46                                                  3        
47                                                  3        
48                                                  3        
49                                                  3        
50                                                  1        
51                                                  2        
52                                                  3        
53                                                  2        
54                                                  3        
55                                                  1        
56                                                  3        
57                                                  1        
58                                                  2        
59                                                  3        
60                                                  3        
61                                                  3        
62                                                  2        
63                                                  2        
64                                                  4        
65                                                  3        
66                                                  1        
67                                                  1        
68                                                  4        
69                                                  3        
70                                                  4        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  3        
75                                                  1        
76                                                  1        
77                                                  3        
78                                                  4        
79                                                  3        
80                                                  2        
81                                                  4        
82                                                  2        
83                                                  2        
84                                                  1        
85                                                  1        
86                                                  2        
87                                                  2        
88                                                  1        
89                                                  4        
90                                                  3        
91                                                  1        
92                                                  3        
93                                                  2        
94                                                  2        
95                                                  3        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).46  \
0   I sleep more than usual. (1=I usually don't do...        
1                                             cope_31        
2                                                   2        
3                                                   2        
4                                                   2        
5                                                   1        
6                                                   1        
7                                                   3        
8                                                   2        
9                                                   1        
10                                                  1        
11                                                  2        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  2        
16                                                  2        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  2        
22                                                  2        
23                                                  1        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  2        
29                                                  1        
30                                                  2        
31                                                  2        
32                                                  2        
33                                                  1        
34                                                  2        
35                                                  1        
36                                                  4        
37                                                  1        
38                                                  2        
39                                                  2        
40                                                  1        
41                                                  2        
42                                                  1        
43                                                  3        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  2        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  2        
56                                                  2        
57                                                  2        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  2        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  2        
66                                                  2        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  2        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  2        
77                                                  1        
78                                                  3        
79                                                  1        
80                                                  3        
81                                                  1        
82                                                  1        
83                                                  1        
84                                                  2        
85                                                  1        
86                                                  1        
87                                                  2        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  3        
94                                                  1        
95                                                  1        
96                                                  1        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).47  \
0   I try to come up with a strategy about what to...        
1                                             cope_32        
2                                                   4        
3                                                   4        
4                                                   4        
5                                                   2        
6                                                   2        
7                                                   2        
8                                                   2        
9                                                   3        
10                                                  2        
11                                                  2        
12                                                  1        
13                                                  2        
14                                                  3        
15                                                  4        
16                                                  2        
17                                                  3        
18                                                  2        
19                                                  2        
20                                                  2        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  4        
25                                                  4        
26                                                  4        
27                                                  4        
28                                                  4        
29                                                  3        
30                                                  3        
31                                                  4        
32                                                  3        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  4        
37                                                  3        
38                                                  3        
39                                                  2        
40                                                  3        
41                                                  3        
42                                                  1        
43                                                  2        
44                                                  2        
45                                                  2        
46                                                  2        
47                                                  2        
48                                                  2        
49                                                  3        
50                                                  3        
51                                                  2        
52                                                  3        
53                                                  2        
54                                                  3        
55                                                  2        
56                                                  3        
57                                                  3        
58                                                  3        
59                                                  2        
60                                                  3        
61                                                  4        
62                                                  4        
63                                                  4        
64                                                  4        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  4        
69                                                  2        
70                                                  2        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  2        
75                                                  2        
76                                                  2        
77                                                  3        
78                                                  2        
79                                                  2        
80                                                  4        
81                                                  4        
82                                                  1        
83                                                  1        
84                                                  3        
85                                                  3        
86                                                  3        
87                                                  2        
88                                                  3        
89                                                  3        
90                                                  1        
91                                                  3        
92                                                  2        
93                                                  3        
94                                                  4        
95                                                  3        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).48  \
0   I focus on dealing with this problem, and if n...        
1                                             cope_33        
2                                                   1        
3                                                   2        
4                                                   4        
5                                                   1        
6                                                   2        
7                                                   2        
8                                                   3        
9                                                   2        
10                                                  2        
11                                                  2        
12                                                  3        
13                                                  2        
14                                                  2        
15                                                  4        
16                                                  2        
17                                                  3        
18                                                  2        
19                                                  3        
20                                                  3        
21                                                  2        
22                                                  3        
23                                                  2        
24                                                  2        
25                                                  2        
26                                                  3        
27                                                  3        
28                                                  2        
29                                                  2        
30                                                  2        
31                                                  3        
32                                                  3        
33                                                  1        
34                                                  1        
35                                                  2        
36                                                  4        
37                                                  4        
38                                                  2        
39                                                  2        
40                                                  2        
41                                                  3        
42                                                  2        
43                                                  2        
44                                                  1        
45                                                  2        
46                                                  3        
47                                                  3        
48                                                  1        
49                                                  2        
50                                                  2        
51                                                  2        
52                                                  2        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  2        
59                                                  3        
60                                                  3        
61                                                  4        
62                                                  3        
63                                                  3        
64                                                  4        
65                                                  2        
66                                                  3        
67                                                  1        
68                                                  3        
69                                                  2        
70                                                  2        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  2        
75                                                  1        
76                                                  4        
77                                                  1        
78                                                  1        
79                                                  3        
80                                                  3        
81                                                  2        
82                                                  1        
83                                                  1        
84                                                  1        
85                                                  2        
86                                                  2        
87                                                  2        
88                                                  3        
89                                                  1        
90                                                  1        
91                                                  2        
92                                                  2        
93                                                  2        
94                                                  3        
95                                                  2        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).49  \
0   I get sympathy and understanding from someone....        
1                                             cope_34        
2                                                   4        
3                                                   2        
4                                                   4        
5                                                   2        
6                                                   2        
7                                                   4        
8                                                   3        
9                                                   4        
10                                                  3        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  2        
15                                                  1        
16                                                  2        
17                                                  1        
18                                                  3        
19                                                  3        
20                                                  2        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  4        
25                                                  3        
26                                                  3        
27                                                  3        
28                                                  2        
29                                                  1        
30                                                  3        
31                                                  4        
32                                                  2        
33                                                  1        
34                                                  3        
35                                                  3        
36                                                  3        
37                                                  3        
38                                                  2        
39                                                  1        
40                                                  1        
41                                                  2        
42                                                  3        
43                                                  3        
44                                                  2        
45                                                  2        
46                                                  4        
47                                                  4        
48                                                  3        
49                                                  3        
50                                                  3        
51                                                  2        
52                                                  2        
53                                                  2        
54                                                  1        
55                                                  3        
56                                                  2        
57                                                  2        
58                                                  2        
59                                                  3        
60                                                  2        
61                                                  4        
62                                                  2        
63                                                  2        
64                                                  3        
65                                                  3        
66                                                  2        
67                                                  1        
68                                                  1        
69                                                  2        
70                                                  2        
71                                                  2        
72                                                  1        
73                                                  3        
74                                                  4        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  4        
79                                                  4        
80                                                  4        
81                                                  3        
82                                                  3        
83                                                  2        
84                                                  2        
85                                                  4        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  4        
90                                                  2        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  2        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).50  \
0   I drink alcohol or take drugs, in order to thi...        
1                                             cope_35        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   2        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  3        
16                                                  1        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  1        
23                                                  1        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  1        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  2        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  1        
84                                                  1        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  2        
95                                                  1        
96                                                  1        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).51  \
0   I kid around about it. (1=I usually don't do t...        
1                                             cope_36        
2                                                   1        
3                                                   1        
4                                                   2        
5                                                   2        
6                                                   4        
7                                                   1        
8                                                   3        
9                                                   1        
10                                                  2        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  3        
16                                                  3        
17                                                  3        
18                                                  2        
19                                                  3        
20                                                  1        
21                                                  2        
22                                                  3        
23                                                  3        
24                                                  1        
25                                                  4        
26                                                  4        
27                                                  2        
28                                                  2        
29                                                  1        
30                                                  4        
31                                                  2        
32                                                  2        
33                                                  2        
34                                                  1        
35                                                  1        
36                                                  4        
37                                                  1        
38                                                  2        
39                                                  4        
40                                                  2        
41                                                  3        
42                                                  2        
43                                                  4        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  3        
48                                                  2        
49                                                  2        
50                                                  2        
51                                                  4        
52                                                  1        
53                                                  2        
54                                                  1        
55                                                  1        
56                                                  3        
57                                                  2        
58                                                  2        
59                                                  2        
60                                                  4        
61                                                  1        
62                                                  2        
63                                                  1        
64                                                  2        
65                                                  3        
66                                                  2        
67                                                  2        
68                                                  3        
69                                                  2        
70                                                  1        
71                                                  2        
72                                                  2        
73                                                  3        
74                                                  1        
75                                                  3        
76                                                  2        
77                                                  2        
78                                                  1        
79                                                  3        
80                                                  1        
81                                                  2        
82                                                  1        
83                                                  2        
84                                                  1        
85                                                  2        
86                                                  3        
87                                                  1        
88                                                  4        
89                                                  3        
90                                                  3        
91                                                  1        
92                                                  2        
93                                                  4        
94                                                  4        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).52  \
0   I give up the attempt to get what I want. (1=I...        
1                                             cope_37        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   2        
8                                                   2        
9                                                   1        
10                                                  2        
11                                                  1        
12                                                  2        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  2        
17                                                  1        
18                                                  2        
19                                                  1        
20                                                  2        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  2        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  2        
36                                                  1        
37                                                  1        
38                                                  2        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  3        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  2        
48                                                  1        
49                                                  1        
50                                                  2        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  2        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  2        
65                                                  1        
66                                                  1        
67                                                  2        
68                                                  1        
69                                                  2        
70                                                  4        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  2        
77                                                  2        
78                                                  1        
79                                                  2        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  2        
84                                                  1        
85                                                  1        
86                                                  2        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  2        
91                                                  1        
92                                                  2        
93                                                  2        
94                                                  2        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).53  \
0   I look for something good in what is happening...        
1                                             cope_38        
2                                                   4        
3                                                   4        
4                                                   4        
5                                                   3        
6                                                   2        
7                                                   4        
8                                                   3        
9                                                   1        
10                                                  2        
11                                                  2        
12                                                  2        
13                                                  3        
14                                                  2        
15                                                  3        
16                                                  2        
17                                                  3        
18                                                  3        
19                                                  2        
20                                                  3        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  4        
25                                                  4        
26                                                  4        
27                                                  3        
28                                                  2        
29                                                  1        
30                                                  4        
31                                                  2        
32                                                  2        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  4        
37                                                  3        
38                                                  2        
39                                                  3        
40                                                  2        
41                                                  2        
42                                                  2        
43                                                  2        
44                                                  4        
45                                                  3        
46                                                  4        
47                                                  3        
48                                                  3        
49                                                  2        
50                                                  3        
51                                                  2        
52                                                  3        
53                                                  3        
54                                                  4        
55                                                  3        
56                                                  3        
57                                                  3        
58                                                  2        
59                                                  4        
60                                                  3        
61                                                  2        
62                                                  2        
63                                                  2        
64                                                  4        
65                                                  1        
66                                                  1        
67                                                  3        
68                                                  2        
69                                                  3        
70                                                  3        
71                                                  4        
72                                                  2        
73                                                  3        
74                                                  2        
75                                                  2        
76                                                  2        
77                                                  2        
78                                                  2        
79                                                  2        
80                                                  2        
81                                                  3        
82                                                  3        
83                                                  2        
84                                                  2        
85                                                  3        
86                                                  3        
87                                                  4        
88                                                  1        
89                                                  3        
90                                                  1        
91                                                  2        
92                                                  3        
93                                                  3        
94                                                  3        
95                                                  4        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).54  \
0   I think about how I might best handle the prob...        
1                                             cope_39        
2                                                   4        
3                                                   4        
4                                                   3        
5                                                   3        
6                                                   2        
7                                                   4        
8                                                   3        
9                                                   2        
10                                                  2        
11                                                  4        
12                                                  3        
13                                                  3        
14                                                  4        
15                                                  4        
16                                                  2        
17                                                  4        
18                                                  3        
19                                                  2        
20                                                  3        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  3        
25                                                  4        
26                                                  2        
27                                                  3        
28                                                  3        
29                                                  2        
30                                                  3        
31                                                  3        
32                                                  3        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  3        
37                                                  3        
38                                                  2        
39                                                  2        
40                                                  3        
41                                                  4        
42                                                  3        
43                                                  2        
44                                                  3        
45                                                  3        
46                                                  4        
47                                                  3        
48                                                  3        
49                                                  3        
50                                                  2        
51                                                  2        
52                                                  3        
53                                                  3        
54                                                  4        
55                                                  3        
56                                                  3        
57                                                  4        
58                                                  4        
59                                                  4        
60                                                  3        
61                                                  4        
62                                                  3        
63                                                  4        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  2        
68                                                  4        
69                                                  3        
70                                                  3        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  4        
75                                                  2        
76                                                  4        
77                                                  2        
78                                                  3        
79                                                  3        
80                                                  3        
81                                                  4        
82                                                  3        
83                                                  1        
84                                                  3        
85                                                  3        
86                                                  3        
87                                                  4        
88                                                  4        
89                                                  4        
90                                                  2        
91                                                  3        
92                                                  3        
93                                                  3        
94                                                  3        
95                                                  4        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).55  \
0   I pretend that it hasn't really happened. (1=I...        
1                                             cope_40        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  1        
16                                                  1        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  2        
23                                                  1        
24                                                  1        
25                                                  2        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  1        
38                                                  1        
39                                                  2        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  2        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  2        
84                                                  1        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  1        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).56  \
0   I make sure not to make matters worse by actin...        
1                                             cope_41        
2                                                   4        
3                                                   2        
4                                                   3        
5                                                   2        
6                                                   1        
7                                                   2        
8                                                   3        
9                                                   1        
10                                                  2        
11                                                  2        
12                                                  2        
13                                                  2        
14                                                  2        
15                                                  3        
16                                                  1        
17                                                  2        
18                                                  2        
19                                                  3        
20                                                  2        
21                                                  3        
22                                                  3        
23                                                  3        
24                                                  1        
25                                                  3        
26                                                  2        
27                                                  3        
28                                                  3        
29                                                  1        
30                                                  2        
31                                                  3        
32                                                  4        
33                                                  2        
34                                                  1        
35                                                  2        
36                                                  3        
37                                                  2        
38                                                  3        
39                                                  3        
40                                                  3        
41                                                  2        
42                                                  3        
43                                                  3        
44                                                  1        
45                                                  3        
46                                                  2        
47                                                  2        
48                                                  4        
49                                                  2        
50                                                  2        
51                                                  3        
52                                                  2        
53                                                  4        
54                                                  3        
55                                                  2        
56                                                  3        
57                                                  4        
58                                                  2        
59                                                  2        
60                                                  2        
61                                                  2        
62                                                  3        
63                                                  3        
64                                                  4        
65                                                  1        
66                                                  1        
67                                                  2        
68                                                  3        
69                                                  3        
70                                                  2        
71                                                  3        
72                                                  1        
73                                                  1        
74                                                  2        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  2        
79                                                  2        
80                                                  3        
81                                                  2        
82                                                  2        
83                                                  3        
84                                                  3        
85                                                  4        
86                                                  3        
87                                                  2        
88                                                  1        
89                                                  3        
90                                                  3        
91                                                  2        
92                                                  2        
93                                                  3        
94                                                  2        
95                                                  3        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).57  \
0   I try hard to prevent other things from interf...        
1                                             cope_42        
2                                                   4        
3                                                   3        
4                                                   3        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   2        
9                                                   1        
10                                                  2        
11                                                  2        
12                                                  1        
13                                                  3        
14                                                  3        
15                                                  3        
16                                                  2        
17                                                  2        
18                                                  2        
19                                                  2        
20                                                  2        
21                                                  3        
22                                                  2        
23                                                  2        
24                                                  2        
25                                                  2        
26                                                  2        
27                                                  2        
28                                                  2        
29                                                  1        
30                                                  3        
31                                                  3        
32                                                  3        
33                                                  2        
34                                                  1        
35                                                  1        
36                                                  1        
37                                                  2        
38                                                  2        
39                                                  3        
40                                                  1        
41                                                  2        
42                                                  3        
43                                                  3        
44                                                  1        
45                                                  1        
46                                                  2        
47                                                  3        
48                                                  2        
49                                                  3        
50                                                  3        
51                                                  1        
52                                                  1        
53                                                  2        
54                                                  2        
55                                                  2        
56                                                  3        
57                                                  3        
58                                                  2        
59                                                  3        
60                                                  3        
61                                                  3        
62                                                  2        
63                                                  3        
64                                                  3        
65                                                  1        
66                                                  2        
67                                                  3        
68                                                  3        
69                                                  2        
70                                                  2        
71                                                  3        
72                                                  1        
73                                                  2        
74                                                  2        
75                                                  3        
76                                                  1        
77                                                  2        
78                                                  1        
79                                                  3        
80                                                  2        
81                                                  4        
82                                                  1        
83                                                  3        
84                                                  1        
85                                                  3        
86                                                  2        
87                                                  2        
88                                                  3        
89                                                  3        
90                                                  3        
91                                                  2        
92                                                  3        
93                                                  2        
94                                                  2        
95                                                  4        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).58  \
0   I go to movies or watch TV, to think about it ...        
1                                             cope_43        
2                                                   1        
3                                                   2        
4                                                   4        
5                                                   2        
6                                                   3        
7                                                   1        
8                                                   3        
9                                                   2        
10                                                  2        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  1        
17                                                  1        
18                                                  3        
19                                                  3        
20                                                  4        
21                                                  1        
22                                                  3        
23                                                  2        
24                                                  1        
25                                                  3        
26                                                  1        
27                                                  2        
28                                                  2        
29                                                  1        
30                                                  2        
31                                                  4        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  3        
36                                                  3        
37                                                  1        
38                                                  3        
39                                                  2        
40                                                  2        
41                                                  1        
42                                                  3        
43                                                  3        
44                                                  2        
45                                                  2        
46                                                  2        
47                                                  2        
48                                                  1        
49                                                  3        
50                                                  4        
51                                                  2        
52                                                  1        
53                                                  3        
54                                                  1        
55                                                  3        
56                                                  3        
57                                                  2        
58                                                  2        
59                                                  4        
60                                                  1        
61                                                  3        
62                                                  2        
63                                                  2        
64                                                  3        
65                                                  3        
66                                                  2        
67                                                  3        
68                                                  2        
69                                                  3        
70                                                  1        
71                                                  2        
72                                                  3        
73                                                  2        
74                                                  3        
75                                                  3        
76                                                  2        
77                                                  3        
78                                                  4        
79                                                  4        
80                                                  4        
81                                                  1        
82                                                  2        
83                                                  4        
84                                                  2        
85                                                  4        
86                                                  2        
87                                                  2        
88                                                  4        
89                                                  3        
90                                                  1        
91                                                  3        
92                                                  3        
93                                                  3        
94                                                  1        
95                                                  2        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).59  \
0   I accept the reality of the fact that it happe...        
1                                             cope_44        
2                                                   3        
3                                                   4        
4                                                   4        
5                                                   2        
6                                                   2        
7                                                   2        
8                                                   4        
9                                                   1        
10                                                  4        
11                                                  4        
12                                                  3        
13                                                  3        
14                                                  3        
15                                                  4        
16                                                  3        
17                                                  4        
18                                                  3        
19                                                  3        
20                                                  2        
21                                                  4        
22                                                  3        
23                                                  3        
24                                                  2        
25                                                  1        
26                                                  4        
27                                                  4        
28                                                  2        
29                                                  3        
30                                                  4        
31                                                  3        
32                                                  4        
33                                                  4        
34                                                  1        
35                                                  3        
36                                                  3        
37                                                  3        
38                                                  3        
39                                                  3        
40                                                  3        
41                                                  4        
42                                                  4        
43                                                  4        
44                                                  2        
45                                                  4        
46                                                  3        
47                                                  3        
48                                                  2        
49                                                  4        
50                                                  2        
51                                                  4        
52                                                  2        
53                                                  3        
54                                                  3        
55                                                  2        
56                                                  3        
57                                                  3        
58                                                  4        
59                                                  3        
60                                                  1        
61                                                  4        
62                                                  3        
63                                                  4        
64                                                  4        
65                                                  3        
66                                                  2        
67                                                  4        
68                                                  3        
69                                                  3        
70                                                  2        
71                                                  4        
72                                                  2        
73                                                  3        
74                                                  3        
75                                                  3        
76                                                  3        
77                                                  3        
78                                                  4        
79                                                  2        
80                                                  3        
81                                                  4        
82                                                  3        
83                                                  4        
84                                                  3        
85                                                  4        
86                                                  4        
87                                                  3        
88                                                  4        
89                                                  3        
90                                                  3        
91                                                  2        
92                                                  2        
93                                                  3        
94                                                  4        
95                                                  4        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).60  \
0   I ask people who have had similar experiences ...        
1                                             cope_45        
2                                                   4        
3                                                   4        
4                                                   3        
5                                                   2        
6                                                   1        
7                                                   2        
8                                                   3        
9                                                   3        
10                                                  3        
11                                                  1        
12                                                  1        
13                                                  3        
14                                                  2        
15                                                  3        
16                                                  2        
17                                                  1        
18                                                  3        
19                                                  3        
20                                                  1        
21                                                  3        
22                                                  4        
23                                                  3        
24                                                  4        
25                                                  4        
26                                                  4        
27                                                  4        
28                                                  4        
29                                                  1        
30                                                  4        
31                                                  4        
32                                                  2        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  4        
37                                                  3        
38                                                  2        
39                                                  2        
40                                                  3        
41                                                  2        
42                                                  1        
43                                                  2        
44                                                  1        
45                                                  4        
46                                                  4        
47                                                  3        
48                                                  2        
49                                                  4        
50                                                  3        
51                                                  1        
52                                                  3        
53                                                  2        
54                                                  2        
55                                                  3        
56                                                  3        
57                                                  1        
58                                                  1        
59                                                  4        
60                                                  4        
61                                                  4        
62                                                  3        
63                                                  3        
64                                                  4        
65                                                  3        
66                                                  1        
67                                                  2        
68                                                  4        
69                                                  2        
70                                                  3        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  3        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  4        
79                                                  1        
80                                                  4        
81                                                  4        
82                                                  2        
83                                                  3        
84                                                  3        
85                                                  4        
86                                                  2        
87                                                  2        
88                                                  3        
89                                                  4        
90                                                  2        
91                                                  2        
92                                                  3        
93                                                  3        
94                                                  2        
95                                                  3        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).61  \
0   I feel a lot of emotional distress and I find ...        
1                                             cope_46        
2                                                   1        
3                                                   2        
4                                                   1        
5                                                   2        
6                                                   1        
7                                                   1        
8                                                   2        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  1        
17                                                  1        
18                                                  2        
19                                                  2        
20                                                  2        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  3        
25                                                  3        
26                                                  1        
27                                                  2        
28                                                  2        
29                                                  2        
30                                                  2        
31                                                  2        
32                                                  2        
33                                                  1        
34                                                  1        
35                                                  4        
36                                                  4        
37                                                  3        
38                                                  2        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  2        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  2        
48                                                  2        
49                                                  1        
50                                                  1        
51                                                  3        
52                                                  2        
53                                                  2        
54                                                  1        
55                                                  2        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  3        
60                                                  2        
61                                                  1        
62                                                  1        
63                                                  2        
64                                                  1        
65                                                  3        
66                                                  1        
67                                                  1        
68                                                  2        
69                                                  1        
70                                                  1        
71                                                  3        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  3        
79                                                  2        
80                                                  4        
81                                                  1        
82                                                  1        
83                                                  3        
84                                                  3        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  3        
90                                                  1        
91                                                  4        
92                                                  2        
93                                                  3        
94                                                  1        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).62  \
0   I take direct action to get around the problem...        
1                                             cope_47        
2                                                   4        
3                                                   1        
4                                                   3        
5                                                   2        
6                                                   1        
7                                                   3        
8                                                   2        
9                                                   1        
10                                                  2        
11                                                  3        
12                                                  1        
13                                                  3        
14                                                  4        
15                                                  4        
16                                                  2        
17                                                  2        
18                                                  2        
19                                                  3        
20                                                  2        
21                                                  3        
22                                                  3        
23                                                  2        
24                                                  3        
25                                                  2        
26                                                  1        
27                                                  3        
28                                                  3        
29                                                  2        
30                                                  3        
31                                                  2        
32                                                  2        
33                                                  1        
34                                                  2        
35                                                  3        
36                                                  3        
37                                                  2        
38                                                  2        
39                                                  3        
40                                                  3        
41                                                  2        
42                                                  3        
43                                                  2        
44                                                  1        
45                                                  2        
46                                                  2        
47                                                  2        
48                                                  2        
49                                                  2        
50                                                  2        
51                                                  2        
52                                                  2        
53                                                  2        
54                                                  2        
55                                                  1        
56                                                  3        
57                                                  2        
58                                                  3        
59                                                  3        
60                                                  2        
61                                                  2        
62                                                  3        
63                                                  3        
64                                                  4        
65                                                  2        
66                                                  1        
67                                                  2        
68                                                  3        
69                                                  3        
70                                                  3        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  2        
75                                                  2        
76                                                  3        
77                                                  2        
78                                                  4        
79                                                  2        
80                                                  2        
81                                                  3        
82                                                  1        
83                                                  2        
84                                                  2        
85                                                  2        
86                                                  2        
87                                                  1        
88                                                  4        
89                                                  2        
90                                                  1        
91                                                  2        
92                                                  2        
93                                                  3        
94                                                  3        
95                                                  2        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).63  \
0   I try to find comfort in my religion. (1=I usu...        
1                                             cope_48        
2                                                   2        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   2        
8                                                   1        
9                                                   2        
10                                                  1        
11                                                  1        
12                                                  2        
13                                                  1        
14                                                  1        
15                                                  1        
16                                                  2        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  1        
23                                                  2        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  4        
31                                                  2        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  1        
37                                                  1        
38                                                  3        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  2        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  2        
53                                                  1        
54                                                  1        
55                                                  3        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  2        
68                                                  1        
69                                                  1        
70                                                  2        
71                                                  1        
72                                                  1        
73                                                  4        
74                                                  2        
75                                                  2        
76                                                  1        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  3        
81                                                  1        
82                                                  2        
83                                                  1        
84                                                  2        
85                                                  1        
86                                                  1        
87                                                  2        
88                                                  1        
89                                                  2        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  2        
95                                                  2        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).64  \
0   I force myself to wait for the right time to d...        
1                                             cope_49        
2                                                   4        
3                                                   2        
4                                                   1        
5                                                   2        
6                                                   1        
7                                                   4        
8                                                   3        
9                                                   2        
10                                                  2        
11                                                  2        
12                                                  1        
13                                                  3        
14                                                  3        
15                                                  4        
16                                                  4        
17                                                  3        
18                                                  2        
19                                                  3        
20                                                  2        
21                                                  3        
22                                                  2        
23                                                  3        
24                                                  2        
25                                                  2        
26                                                  1        
27                                                  2        
28                                                  2        
29                                                  3        
30                                                  2        
31                                                  3        
32                                                  3        
33                                                  2        
34                                                  1        
35                                                  1        
36                                                  3        
37                                                  1        
38                                                  3        
39                                                  2        
40                                                  3        
41                                                  1        
42                                                  2        
43                                                  2        
44                                                  1        
45                                                  3        
46                                                  2        
47                                                  2        
48                                                  3        
49                                                  2        
50                                                  3        
51                                                  2        
52                                                  3        
53                                                  2        
54                                                  3        
55                                                  3        
56                                                  3        
57                                                  1        
58                                                  2        
59                                                  3        
60                                                  3        
61                                                  2        
62                                                  2        
63                                                  3        
64                                                  3        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  2        
69                                                  3        
70                                                  3        
71                                                  3        
72                                                  1        
73                                                  2        
74                                                  3        
75                                                  3        
76                                                  2        
77                                                  2        
78                                                  2        
79                                                  3        
80                                                  2        
81                                                  3        
82                                                  1        
83                                                  3        
84                                                  2        
85                                                  2        
86                                                  3        
87                                                  1        
88                                                  1        
89                                                  3        
90                                                  1        
91                                                  2        
92                                                  2        
93                                                  3        
94                                                  2        
95                                                  2        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).65  \
0   I make fun of the situation. (1=I usually don'...        
1                                             cope_50        
2                                                   1        
3                                                   1        
4                                                   3        
5                                                   2        
6                                                   3        
7                                                   1        
8                                                   3        
9                                                   1        
10                                                  2        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  3        
16                                                  2        
17                                                  3        
18                                                  2        
19                                                  4        
20                                                  1        
21                                                  2        
22                                                  3        
23                                                  3        
24                                                  1        
25                                                  3        
26                                                  2        
27                                                  2        
28                                                  2        
29                                                  1        
30                                                  4        
31                                                  2        
32                                                  2        
33                                                  2        
34                                                  2        
35                                                  1        
36                                                  1        
37                                                  1        
38                                                  2        
39                                                  4        
40                                                  2        
41                                                  2        
42                                                  2        
43                                                  4        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  3        
48                                                  2        
49                                                  2        
50                                                  2        
51                                                  3        
52                                                  1        
53                                                  3        
54                                                  1        
55                                                  1        
56                                                  3        
57                                                  2        
58                                                  2        
59                                                  2        
60                                                  4        
61                                                  2        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  3        
66                                                  2        
67                                                  2        
68                                                  3        
69                                                  3        
70                                                  1        
71                                                  2        
72                                                  3        
73                                                  3        
74                                                  1        
75                                                  2        
76                                                  2        
77                                                  2        
78                                                  1        
79                                                  3        
80                                                  1        
81                                                  2        
82                                                  1        
83                                                  3        
84                                                  1        
85                                                  2        
86                                                  3        
87                                                  1        
88                                                  4        
89                                                  3        
90                                                  2        
91                                                  1        
92                                                  3        
93                                                  4        
94                                                  4        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).66  \
0   I reduce the amount of effort I'm putting into...        
1                                             cope_51        
2                                                   1        
3                                                   1        
4                                                   3        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   2        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  2        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  2        
17                                                  1        
18                                                  1        
19                                                  2        
20                                                  2        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  2        
30                                                  1        
31                                                  2        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  1        
37                                                  1        
38                                                  1        
39                                                  2        
40                                                  1        
41                                                  2        
42                                                  1        
43                                                  2        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  2        
48                                                  2        
49                                                  2        
50                                                  1        
51                                                  2        
52                                                  1        
53                                                  2        
54                                                  1        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  2        
59                                                  3        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  2        
66                                                  1        
67                                                  2        
68                                                  1        
69                                                  2        
70                                                  2        
71                                                  1        
72                                                  1        
73                                                  2        
74                                                  1        
75                                                  3        
76                                                  1        
77                                                  2        
78                                                  1        
79                                                  2        
80                                                  1        
81                                                  1        
82                                                  2        
83                                                  4        
84                                                  2        
85                                                  2        
86                                                  1        
87                                                  1        
88                                                  2        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  2        
93                                                  2        
94                                                  1        
95                                                  1        
96                                                  1        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).67  \
0   I talk to someone about how I feel. (1=I usual...        
1                                             cope_52        
2                                                   3        
3                                                   2        
4                                                   4        
5                                                   4        
6                                                   2        
7                                                   4        
8                                                   2        
9                                                   4        
10                                                  3        
11                                                  1        
12                                                  1        
13                                                  3        
14                                                  3        
15                                                  1        
16                                                  2        
17                                                  1        
18                                                  3        
19                                                  3        
20                                                  2        
21                                                  3        
22                                                  4        
23                                                  3        
24                                                  4        
25                                                  4        
26                                                  2        
27                                                  4        
28                                                  4        
29                                                  1        
30                                                  3        
31                                                  4        
32                                                  2        
33                                                  2        
34                                                  2        
35                                                  4        
36                                                  4        
37                                                  3        
38                                                  2        
39                                                  1        
40                                                  2        
41                                                  3        
42                                                  1        
43                                                  3        
44                                                  2        
45                                                  3        
46                                                  4        
47                                                  1        
48                                                  2        
49                                                  4        
50                                                  3        
51                                                  4        
52                                                  3        
53                                                  2        
54                                                  2        
55                                                  3        
56                                                  3        
57                                                  1        
58                                                  2        
59                                                  4        
60                                                  4        
61                                                  2        
62                                                  2        
63                                                  3        
64                                                  2        
65                                                  4        
66                                                  1        
67                                                  1        
68                                                  2        
69                                                  2        
70                                                  3        
71                                                  4        
72                                                  1        
73                                                  4        
74                                                  4        
75                                                  1        
76                                                  1        
77                                                  2        
78                                                  4        
79                                                  4        
80                                                  4        
81                                                  3        
82                                                  4        
83                                                  2        
84                                                  4        
85                                                  3        
86                                                  2        
87                                                  2        
88                                                  1        
89                                                  4        
90                                                  2        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  1        
95                                                  4        
96                                                  4        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).68  \
0   I use alcohol or drugs to help me get through ...        
1                                             cope_53        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   2        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  4        
16                                                  1        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  1        
23                                                  1        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  1        
34                                                  1        
35                                                  3        
36                                                  2        
37                                                  1        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  1        
48                                                  1        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  1        
73                                                  1        
74                                                  1        
75                                                  1        
76                                                  1        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  1        
84                                                  1        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  2        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).69  \
0   I learn to live with it. (1=I usually don't do...        
1                                             cope_54        
2                                                   3        
3                                                   4        
4                                                   1        
5                                                   2        
6                                                   1        
7                                                   2        
8                                                   3        
9                                                   3        
10                                                  3        
11                                                  3        
12                                                  3        
13                                                  2        
14                                                  1        
15                                                  3        
16                                                  2        
17                                                  4        
18                                                  2        
19                                                  2        
20                                                  2        
21                                                  2        
22                                                  3        
23                                                  2        
24                                                  2        
25                                                  3        
26                                                  2        
27                                                  3        
28                                                  2        
29                                                  2        
30                                                  4        
31                                                  2        
32                                                  2        
33                                                  3        
34                                                  2        
35                                                  1        
36                                                  4        
37                                                  3        
38                                                  3        
39                                                  3        
40                                                  2        
41                                                  4        
42                                                  3        
43                                                  2        
44                                                  2        
45                                                  4        
46                                                  2        
47                                                  3        
48                                                  2        
49                                                  2        
50                                                  2        
51                                                  2        
52                                                  2        
53                                                  3        
54                                                  2        
55                                                  2        
56                                                  3        
57                                                  3        
58                                                  3        
59                                                  3        
60                                                  3        
61                                                  1        
62                                                  2        
63                                                  3        
64                                                  3        
65                                                  3        
66                                                  2        
67                                                  3        
68                                                  2        
69                                                  3        
70                                                  2        
71                                                  4        
72                                                  3        
73                                                  4        
74                                                  2        
75                                                  3        
76                                                  3        
77                                                  2        
78                                                  4        
79                                                  3        
80                                                  3        
81                                                  4        
82                                                  3        
83                                                  4        
84                                                  3        
85                                                  4        
86                                                  4        
87                                                  2        
88                                                  4        
89                                                  3        
90                                                  2        
91                                                  2        
92                                                  2        
93                                                  4        
94                                                  4        
95                                                  4        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).70  \
0   I put aside other activities in order to conce...        
1                                             cope_55        
2                                                   4        
3                                                   2        
4                                                   2        
5                                                   1        
6                                                   2        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  2        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  3        
15                                                  3        
16                                                  2        
17                                                  2        
18                                                  1        
19                                                  2        
20                                                  2        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  2        
25                                                  2        
26                                                  1        
27                                                  1        
28                                                  2        
29                                                  1        
30                                                  2        
31                                                  3        
32                                                  4        
33                                                  1        
34                                                  1        
35                                                  2        
36                                                  2        
37                                                  2        
38                                                  2        
39                                                  2        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  3        
44                                                  1        
45                                                  2        
46                                                  2        
47                                                  2        
48                                                  1        
49                                                  1        
50                                                  3        
51                                                  1        
52                                                  2        
53                                                  2        
54                                                  1        
55                                                  1        
56                                                  3        
57                                                  2        
58                                                  2        
59                                                  2        
60                                                  3        
61                                                  1        
62                                                  1        
63                                                  2        
64                                                  1        
65                                                  1        
66                                                  2        
67                                                  1        
68                                                  2        
69                                                  2        
70                                                  2        
71                                                  3        
72                                                  1        
73                                                  2        
74                                                  2        
75                                                  1        
76                                                  2        
77                                                  1        
78                                                  2        
79                                                  1        
80                                                  2        
81                                                  3        
82                                                  1        
83                                                  2        
84                                                  1        
85                                                  1        
86                                                  2        
87                                                  2        
88                                                  2        
89                                                  3        
90                                                  1        
91                                                  2        
92                                                  2        
93                                                  2        
94                                                  1        
95                                                  1        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).71  \
0   I think hard about what steps to take. (1=I us...        
1                                             cope_56        
2                                                   4        
3                                                   3        
4                                                   1        
5                                                   2        
6                                                   1        
7                                                   3        
8                                                   2        
9                                                   2        
10                                                  1        
11                                                  3        
12                                                  1        
13                                                  2        
14                                                  3        
15                                                  4        
16                                                  2        
17                                                  4        
18                                                  2        
19                                                  3        
20                                                  2        
21                                                  4        
22                                                  3        
23                                                  3        
24                                                  4        
25                                                  4        
26                                                  2        
27                                                  2        
28                                                  4        
29                                                  1        
30                                                  3        
31                                                  4        
32                                                  3        
33                                                  1        
34                                                  2        
35                                                  1        
36                                                  4        
37                                                  3        
38                                                  4        
39                                                  2        
40                                                  2        
41                                                  3        
42                                                  1        
43                                                  2        
44                                                  2        
45                                                  4        
46                                                  2        
47                                                  3        
48                                                  3        
49                                                  3        
50                                                  1        
51                                                  1        
52                                                  3        
53                                                  2        
54                                                  4        
55                                                  2        
56                                                  4        
57                                                  3        
58                                                  3        
59                                                  3        
60                                                  4        
61                                                  4        
62                                                  2        
63                                                  4        
64                                                  4        
65                                                  2        
66                                                  1        
67                                                  2        
68                                                  4        
69                                                  3        
70                                                  4        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  3        
75                                                  1        
76                                                  3        
77                                                  1        
78                                                  2        
79                                                  2        
80                                                  3        
81                                                  4        
82                                                  4        
83                                                  1        
84                                                  3        
85                                                  2        
86                                                  2        
87                                                  2        
88                                                  4        
89                                                  4        
90                                                  1        
91                                                  3        
92                                                  2        
93                                                  3        
94                                                  2        
95                                                  4        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).72  \
0   I act as though it hasn't even happened. (1=I ...        
1                                             cope_57        
2                                                   1        
3                                                   2        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  2        
13                                                  1        
14                                                  1        
15                                                  1        
16                                                  1        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  2        
23                                                  1        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  1        
31                                                  1        
32                                                  1        
33                                                  2        
34                                                  1        
35                                                  3        
36                                                  1        
37                                                  1        
38                                                  2        
39                                                  2        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  1        
45                                                  2        
46                                                  1        
47                                                  2        
48                                                  1        
49                                                  1        
50                                                  2        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  3        
57                                                  1        
58                                                  1        
59                                                  2        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  1        
71                                                  1        
72                                                  2        
73                                                  1        
74                                                  1        
75                                                  2        
76                                                  1        
77                                                  2        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  1        
82                                                  1        
83                                                  1        
84                                                  1        
85                                                  2        
86                                                  3        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  2        
94                                                  1        
95                                                  1        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).73  \
0   I do what has to be done, one step at a time. ...        
1                                             cope_58        
2                                                   4        
3                                                   4        
4                                                   2        
5                                                   3        
6                                                   2        
7                                                   3        
8                                                   3        
9                                                   2        
10                                                  2        
11                                                  3        
12                                                  2        
13                                                  3        
14                                                  4        
15                                                  4        
16                                                  2        
17                                                  2        
18                                                  2        
19                                                  2        
20                                                  2        
21                                                  3        
22                                                  2        
23                                                  3        
24                                                  3        
25                                                  2        
26                                                  2        
27                                                  2        
28                                                  3        
29                                                  2        
30                                                  4        
31                                                  4        
32                                                  4        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  3        
37                                                  2        
38                                                  4        
39                                                  2        
40                                                  3        
41                                                  3        
42                                                  1        
43                                                  2        
44                                                  2        
45                                                  4        
46                                                  2        
47                                                  3        
48                                                  2        
49                                                  3        
50                                                  2        
51                                                  2        
52                                                  3        
53                                                  3        
54                                                  2        
55                                                  3        
56                                                  4        
57                                                  3        
58                                                  3        
59                                                  4        
60                                                  4        
61                                                  4        
62                                                  2        
63                                                  4        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  3        
68                                                  4        
69                                                  4        
70                                                  2        
71                                                  4        
72                                                  1        
73                                                  3        
74                                                  3        
75                                                  2        
76                                                  3        
77                                                  2        
78                                                  2        
79                                                  3        
80                                                  3        
81                                                  3        
82                                                  2        
83                                                  2        
84                                                  2        
85                                                  2        
86                                                  3        
87                                                  3        
88                                                  4        
89                                                  4        
90                                                  3        
91                                                  3        
92                                                  2        
93                                                  3        
94                                                  3        
95                                                  4        
96                                                  2        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).74  \
0   I learn something from the experience. (1=I us...        
1                                             cope_59        
2                                                   4        
3                                                   4        
4                                                   3        
5                                                   2        
6                                                   4        
7                                                   4        
8                                                   4        
9                                                   4        
10                                                  3        
11                                                  4        
12                                                  1        
13                                                  3        
14                                                  4        
15                                                  4        
16                                                  4        
17                                                  3        
18                                                  3        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  3        
23                                                  4        
24                                                  3        
25                                                  4        
26                                                  4        
27                                                  4        
28                                                  3        
29                                                  2        
30                                                  4        
31                                                  3        
32                                                  4        
33                                                  3        
34                                                  3        
35                                                  2        
36                                                  4        
37                                                  3        
38                                                  3        
39                                                  3        
40                                                  4        
41                                                  4        
42                                                  4        
43                                                  3        
44                                                  4        
45                                                  4        
46                                                  4        
47                                                  3        
48                                                  4        
49                                                  4        
50                                                  3        
51                                                  2        
52                                                  3        
53                                                  3        
54                                                  4        
55                                                  4        
56                                                  4        
57                                                  3        
58                                                  2        
59                                                  4        
60                                                  4        
61                                                  4        
62                                                  2        
63                                                  4        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  3        
68                                                  4        
69                                                  3        
70                                                  4        
71                                                  3        
72                                                  2        
73                                                  4        
74                                                  4        
75                                                  3        
76                                                  3        
77                                                  2        
78                                                  4        
79                                                  3        
80                                                  3        
81                                                  3        
82                                                  4        
83                                                  3        
84                                                  4        
85                                                  4        
86                                                  3        
87                                                  3        
88                                                  4        
89                                                  4        
90                                                  2        
91                                                  3        
92                                                  2        
93                                                  4        
94                                                  3        
95                                                  4        
96                                                  3        

   Cleveland Adolescent Sleepiness Questionnaire (CASQ).75  \
0   I pray more than usual. (1=I usually don't do ...        
1                                             cope_60        
2                                                   1        
3                                                   2        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   1        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  2        
14                                                  1        
15                                                  1        
16                                                  3        
17                                                  1        
18                                                  1        
19                                                  1        
20                                                  1        
21                                                  1        
22                                                  2        
23                                                  2        
24                                                  1        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  1        
30                                                  3        
31                                                  1        
32                                                  2        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  1        
37                                                  1        
38                                                  1        
39                                                  1        
40                                                  1        
41                                                  1        
42                                                  1        
43                                                  1        
44                                                  2        
45                                                  1        
46                                                  1        
47                                                  1        
48                                                  3        
49                                                  1        
50                                                  1        
51                                                  1        
52                                                  2        
53                                                  1        
54                                                  1        
55                                                  4        
56                                                  1        
57                                                  1        
58                                                  1        
59                                                  2        
60                                                  1        
61                                                  1        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  1        
70                                                  2        
71                                                  1        
72                                                  1        
73                                                  4        
74                                                  1        
75                                                  2        
76                                                  1        
77                                                  1        
78                                                  2        
79                                                  1        
80                                                  3        
81                                                  1        
82                                                  2        
83                                                  1        
84                                                  2        
85                                                  1        
86                                                  1        
87                                                  2        
88                                                  1        
89                                                  3        
90                                                  1        
91                                                  1        
92                                                  1        
93                                                  1        
94                                                  1        
95                                                  2        
96                                                  1        

      Difficulties in Emotion Regulation Scale (DERS)  \
0   I am clear about my feelings. (1=Almost never ...   
1                                              ders_1   
2                                                   1   
3                                                   2   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   2   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  3   
12                                                  4   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  4   
17                                                  3   
18                                                  2   
19                                                  3   
20                                                  3   
21                                                  1   
22                                                  4   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  3   
29                                                  3   
30                                                  2   
31                                                  4   
32                                                  4   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  2   
38                                                  3   
39                                                  2   
40                                                  3   
41                                                  2   
42                                                  2   
43                                                  3   
44                                                  2   
45                                                  2   
46                                                  2   
47                                                  4   
48                                                  4   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  2   
53                                                  3   
54                                                  2   
55                                                  2   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  3   
64                                                  3   
65                                                  3   
66                                                  4   
67                                                  2   
68                                                  4   
69                                                  4   
70                                                  4   
71                                                  4   
72                                                  2   
73                                                  4   
74                                                  5   
75                                                  2   
76                                                  3   
77                                                  3   
78                                                  4   
79                                                  4   
80                                                  5   
81                                                  3   
82                                                  5   
83                                                  4   
84                                                  4   
85                                                  5   
86                                                  4   
87                                                  2   
88                                                  2   
89                                                  4   
90                                                  4   
91                                                  4   
92                                                  2   
93                                                  2   
94                                                  2   
95                                                  5   
96                                                  5   

    Difficulties in Emotion Regulation Scale (DERS).1  \
0   I pay attention to how I feel. (1=Almost never...   
1                                              ders_2   
2                                                   1   
3                                                   2   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  3   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  3   
16                                                  3   
17                                                  2   
18                                                  1   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  4   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  3   
27                                                  2   
28                                                  1   
29                                                  4   
30                                                  1   
31                                                  1   
32                                                  3   
33                                                  2   
34                                                  3   
35                                                  1   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  4   
40                                                  2   
41                                                  3   
42                                                  3   
43                                                  3   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  3   
49                                                  1   
50                                                  4   
51                                                  1   
52                                                  3   
53                                                  4   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  3   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  4   
66                                                  4   
67                                                  3   
68                                                  5   
69                                                  3   
70                                                  5   
71                                                  5   
72                                                  2   
73                                                  5   
74                                                  4   
75                                                  4   
76                                                  3   
77                                                  4   
78                                                  5   
79                                                  5   
80                                                  5   
81                                                  5   
82                                                  5   
83                                                  4   
84                                                  4   
85                                                  4   
86                                                  5   
87                                                  3   
88                                                  5   
89                                                  4   
90                                                  4   
91                                                  5   
92                                                  2   
93                                                  3   
94                                                  1   
95                                                  5   
96                                                  4   

    Difficulties in Emotion Regulation Scale (DERS).2  \
0   I experience my emotions as overwhelming and o...   
1                                              ders_3   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   2   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  1   
23                                                  1   
24                                                  3   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  3   
34                                                  2   
35                                                  3   
36                                                  3   
37                                                  4   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  2   
50                                                  1   
51                                                  3   
52                                                  2   
53                                                  1   
54                                                  2   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  4   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  3   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  1   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  2   
91                                                  3   
92                                                  1   
93                                                  4   
94                                                  1   
95                                                  1   
96                                                  2   

    Difficulties in Emotion Regulation Scale (DERS).3  \
0   I have no idea how I am feeling. (1=Almost nev...   
1                                              ders_4   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  3   
29                                                  2   
30                                                  1   
31                                                  2   
32                                                  3   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  3   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  2   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  4   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  2   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  3   
76                                                  2   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  2   
89                                                  1   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  2   
94                                                  3   
95                                                  1   
96                                                  2   

    Difficulties in Emotion Regulation Scale (DERS).4  \
0   I have difficulty making sense out of my feeli...   
1                                              ders_5   
2                                                   1   
3                                                   2   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   4   
9                                                   1   
10                                                  1   
11                                                  2   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  3   
17                                                  2   
18                                                  1   
19                                                  2   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  3   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  3   
29                                                  2   
30                                                  2   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  2   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  2   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  4   
60                                                  2   
61                                                  1   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  4   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  1   
96                                                  2   

    Difficulties in Emotion Regulation Scale (DERS).5  \
0   I am attentive to my feelings. (1=Almost never...   
1                                              ders_6   
2                                                   1   
3                                                   2   
4                                                   3   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  3   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  3   
16                                                  4   
17                                                  2   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  1   
22                                                  4   
23                                                  3   
24                                                  2   
25                                                  1   
26                                                  3   
27                                                  2   
28                                                  3   
29                                                  4   
30                                                  1   
31                                                  1   
32                                                  4   
33                                                  2   
34                                                  2   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  3   
42                                                  4   
43                                                  4   
44                                                  2   
45                                                  1   
46                                                  2   
47                                                  4   
48                                                  4   
49                                                  2   
50                                                  3   
51                                                  1   
52                                                  3   
53                                                  4   
54                                                  1   
55                                                  3   
56                                                  2   
57                                                  2   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  3   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  4   
67                                                  3   
68                                                  5   
69                                                  2   
70                                                  4   
71                                                  5   
72                                                  2   
73                                                  5   
74                                                  4   
75                                                  3   
76                                                  3   
77                                                  3   
78                                                  5   
79                                                  3   
80                                                  5   
81                                                  4   
82                                                  5   
83                                                  4   
84                                                  4   
85                                                  3   
86                                                  2   
87                                                  4   
88                                                  2   
89                                                  4   
90                                                  4   
91                                                  4   
92                                                  2   
93                                                  2   
94                                                  1   
95                                                  5   
96                                                  5   

    Difficulties in Emotion Regulation Scale (DERS).6  \
0   I know exactly how I am feeling. (1=Almost nev...   
1                                              ders_7   
2                                                   1   
3                                                   2   
4                                                   3   
5                                                   2   
6                                                   2   
7                                                   2   
8                                                   4   
9                                                   2   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  3   
16                                                  5   
17                                                  4   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  2   
22                                                  4   
23                                                  2   
24                                                  3   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  4   
29                                                  4   
30                                                  2   
31                                                  2   
32                                                  2   
33                                                  4   
34                                                  2   
35                                                  4   
36                                                  3   
37                                                  2   
38                                                  4   
39                                                  3   
40                                                  3   
41                                                  3   
42                                                  2   
43                                                  2   
44                                                  2   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  3   
49                                                  4   
50                                                  4   
51                                                  2   
52                                                  2   
53                                                  3   
54                                                  2   
55                                                  3   
56                                                  3   
57                                                  2   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  4   
67                                                  2   
68                                                  4   
69                                                  3   
70                                                  3   
71                                                  5   
72                                                  4   
73                                                  5   
74                                                  4   
75                                                  3   
76                                                  4   
77                                                  3   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  4   
82                                                  3   
83                                                  2   
84                                                  4   
85                                                  5   
86                                                  4   
87                                                  4   
88                                                  3   
89                                                  3   
90                                                  4   
91                                                  3   
92                                                  2   
93                                                  2   
94                                                  2   
95                                                  5   
96                                                  4   

    Difficulties in Emotion Regulation Scale (DERS).7  \
0   I care about what I am feeling. (1=Almost neve...   
1                                              ders_8   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  3   
12                                                  3   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  4   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  4   
27                                                  1   
28                                                  2   
29                                                  4   
30                                                  2   
31                                                  1   
32                                                  2   
33                                                  3   
34                                                  2   
35                                                  1   
36                                                  2   
37                                                  1   
38                                                  1   
39                                                  4   
40                                                  3   
41                                                  1   
42                                                  4   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  4   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  3   
59                                                  1   
60                                                  2   
61                                                  3   
62                                                  3   
63                                                  1   
64                                                  2   
65                                                  3   
66                                                  5   
67                                                  4   
68                                                  4   
69                                                  3   
70                                                  5   
71                                                  4   
72                                                  2   
73                                                  4   
74                                                  5   
75                                                  5   
76                                                  2   
77                                                  4   
78                                                  5   
79                                                  4   
80                                                  5   
81                                                  5   
82                                                  5   
83                                                  3   
84                                                  4   
85                                                  5   
86                                                  5   
87                                                  4   
88                                                  2   
89                                                  5   
90                                                  5   
91                                                  5   
92                                                  2   
93                                                  5   
94                                                  3   
95                                                  5   
96                                                  5   

    Difficulties in Emotion Regulation Scale (DERS).8  \
0   I am confused about how I feel. (1=Almost neve...   
1                                              ders_9   
2                                                   1   
3                                                   2   
4                                                   1   
5                                                   2   
6                                                   3   
7                                                   2   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  2   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  2   
16                                                  3   
17                                                  2   
18                                                  1   
19                                                  3   
20                                                  2   
21                                                  1   
22                                                  3   
23                                                  3   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  4   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  2   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  4   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  1   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  2   
67                                                  3   
68                                                  2   
69                                                  2   
70                                                  2   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  4   
76                                                  1   
77                                                  2   
78                                                  3   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  2   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  2   
90                                                  2   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  1   
96                                                  2   

    Difficulties in Emotion Regulation Scale (DERS).9  \
0   When I'm upset, I acknowledge my emotions. (1=...   
1                                             ders_10   
2                                                   1   
3                                                   2   
4                                                   2   
5                                                   2   
6                                                   3   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  4   
12                                                  5   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  4   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  3   
21                                                  2   
22                                                  4   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  2   
28                                                  4   
29                                                  1   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  3   
34                                                  3   
35                                                  3   
36                                                  2   
37                                                  1   
38                                                  3   
39                                                  5   
40                                                  2   
41                                                  1   
42                                                  5   
43                                                  5   
44                                                  4   
45                                                  1   
46                                                  2   
47                                                  3   
48                                                  3   
49                                                  2   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  1   
56                                                  2   
57                                                  4   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  4   
62                                                  4   
63                                                  2   
64                                                  4   
65                                                  4   
66                                                  3   
67                                                  2   
68                                                  3   
69                                                  2   
70                                                  3   
71                                                  5   
72                                                  2   
73                                                  3   
74                                                  3   
75                                                  3   
76                                                  2   
77                                                  3   
78                                                  4   
79                                                  4   
80                                                  5   
81                                                  4   
82                                                  5   
83                                                  3   
84                                                  4   
85                                                  4   
86                                                  1   
87                                                  3   
88                                                  1   
89                                                  5   
90                                                  4   
91                                                  5   
92                                                  4   
93                                                  4   
94                                                  3   
95                                                  5   
96                                                  5   

   Difficulties in Emotion Regulation Scale (DERS).10  \
0   When I'm upset, I become angry with myself for...   
1                                             ders_11   
2                                                   1   
3                                                   1   
4                                                   4   
5                                                   2   
6                                                   2   
7                                                   3   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  3   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  2   
24                                                  3   
25                                                  1   
26                                                  2   
27                                                  2   
28                                                  2   
29                                                  5   
30                                                  2   
31                                                  2   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  2   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  2   
47                                                  4   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  3   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  3   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  4   
89                                                  1   
90                                                  4   
91                                                  2   
92                                                  4   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  1   

   Difficulties in Emotion Regulation Scale (DERS).11  \
0   When I'm upset, I become embarrassed for feeli...   
1                                             ders_12   
2                                                   1   
3                                                   2   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   3   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  3   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  1   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  2   
33                                                  4   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  2   
47                                                  4   
48                                                  1   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  3   
66                                                  2   
67                                                  2   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  3   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  4   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  2   
88                                                  4   
89                                                  1   
90                                                  2   
91                                                  3   
92                                                  3   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  2   

   Difficulties in Emotion Regulation Scale (DERS).12  \
0   When I'm upset, I have difficulty getting work...   
1                                             ders_13   
2                                                   5   
3                                                   2   
4                                                   1   
5                                                   4   
6                                                   4   
7                                                   1   
8                                                   5   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  3   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  3   
22                                                  2   
23                                                  2   
24                                                  5   
25                                                  3   
26                                                  1   
27                                                  2   
28                                                  5   
29                                                  5   
30                                                  2   
31                                                  3   
32                                                  5   
33                                                  2   
34                                                  2   
35                                                  4   
36                                                  2   
37                                                  4   
38                                                  4   
39                                                  2   
40                                                  4   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  2   
45                                                  3   
46                                                  3   
47                                                  5   
48                                                  2   
49                                                  2   
50                                                  2   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  3   
55                                                  3   
56                                                  3   
57                                                  3   
58                                                  2   
59                                                  4   
60                                                  3   
61                                                  3   
62                                                  1   
63                                                  2   
64                                                  2   
65                                                  4   
66                                                  4   
67                                                  4   
68                                                  4   
69                                                  3   
70                                                  2   
71                                                  3   
72                                                  2   
73                                                  3   
74                                                  4   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  3   
79                                                  3   
80                                                  2   
81                                                  2   
82                                                  2   
83                                                  4   
84                                                  3   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  5   
90                                                  2   
91                                                  4   
92                                                  3   
93                                                  3   
94                                                  4   
95                                                  1   
96                                                  2   

   Difficulties in Emotion Regulation Scale (DERS).13  \
0   When I'm upset, I become out of control. (1=Al...   
1                                             ders_14   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  4   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  5   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  4   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  4   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  2   

   Difficulties in Emotion Regulation Scale (DERS).14  \
0   When I'm upset, I believe that I will remain t...   
1                                             ders_15   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  4   
30                                                  2   
31                                                  2   
32                                                  3   
33                                                  1   
34                                                  1   
35                                                  4   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  3   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  4   
76                                                  2   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  3   

   Difficulties in Emotion Regulation Scale (DERS).15  \
0   When I'm upset, I believe that I will end up f...   
1                                             ders_16   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  4   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  3   
77                                                  2   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  2   
88                                                  3   
89                                                  1   
90                                                  1   
91                                                  4   
92                                                  1   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  2   

   Difficulties in Emotion Regulation Scale (DERS).16  \
0   When I'm upset, I believe that my feelings are...   
1                                             ders_17   
2                                                   5   
3                                                   2   
4                                                   5   
5                                                   2   
6                                                   3   
7                                                   3   
8                                                   2   
9                                                   2   
10                                                  2   
11                                                  4   
12                                                  4   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  4   
18                                                  4   
19                                                  2   
20                                                  3   
21                                                  2   
22                                                  4   
23                                                  4   
24                                                  2   
25                                                  2   
26                                                  3   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  3   
33                                                  4   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  3   
41                                                  1   
42                                                  4   
43                                                  3   
44                                                  4   
45                                                  3   
46                                                  1   
47                                                  4   
48                                                  3   
49                                                  2   
50                                                  5   
51                                                  1   
52                                                  2   
53                                                  3   
54                                                  1   
55                                                  2   
56                                                  3   
57                                                  5   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  4   
62                                                  3   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  4   
67                                                  2   
68                                                  4   
69                                                  4   
70                                                  5   
71                                                  1   
72                                                  2   
73                                                  4   
74                                                  3   
75                                                  3   
76                                                  1   
77                                                  4   
78                                                  4   
79                                                  5   
80                                                  4   
81                                                  4   
82                                                  5   
83                                                  2   
84                                                  4   
85                                                  2   
86                                                  4   
87                                                  3   
88                                                  2   
89                                                  5   
90                                                  3   
91                                                  3   
92                                                  5   
93                                                  4   
94                                                  2   
95                                                  5   
96                                                  5   

   Difficulties in Emotion Regulation Scale (DERS).17  \
0   When I'm upset, I have difficulty focusing on ...   
1                                             ders_18   
2                                                   5   
3                                                   2   
4                                                   1   
5                                                   3   
6                                                   4   
7                                                   2   
8                                                   4   
9                                                   1   
10                                                  1   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  3   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  3   
21                                                  3   
22                                                  3   
23                                                  1   
24                                                  5   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  4   
29                                                  5   
30                                                  3   
31                                                  3   
32                                                  5   
33                                                  2   
34                                                  2   
35                                                  4   
36                                                  3   
37                                                  3   
38                                                  4   
39                                                  2   
40                                                  4   
41                                                  1   
42                                                  1   
43                                                  4   
44                                                  2   
45                                                  2   
46                                                  3   
47                                                  4   
48                                                  2   
49                                                  2   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  3   
55                                                  2   
56                                                  2   
57                                                  3   
58                                                  2   
59                                                  5   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  3   
65                                                  4   
66                                                  4   
67                                                  4   
68                                                  1   
69                                                  4   
70                                                  2   
71                                                  3   
72                                                  2   
73                                                  3   
74                                                  2   
75                                                  4   
76                                                  1   
77                                                  3   
78                                                  3   
79                                                  4   
80                                                  3   
81                                                  2   
82                                                  2   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  2   
88                                                  3   
89                                                  5   
90                                                  3   
91                                                  4   
92                                                  3   
93                                                  3   
94                                                  3   
95                                                  1   
96                                                  5   

   Difficulties in Emotion Regulation Scale (DERS).18  \
0   When I'm upset, I feel out of control. (1=Almo...   
1                                             ders_19   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  4   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  3   
36                                                  2   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  3   
59                                                  4   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  2   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  4   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  3   

   Difficulties in Emotion Regulation Scale (DERS).19  \
0   When I'm upset, I can still get things done. (...   
1                                             ders_20   
2                                                   4   
3                                                   2   
4                                                   3   
5                                                   4   
6                                                   4   
7                                                   2   
8                                                   4   
9                                                   2   
10                                                  5   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  2   
22                                                  4   
23                                                  2   
24                                                  5   
25                                                  2   
26                                                  1   
27                                                  3   
28                                                  5   
29                                                  5   
30                                                  2   
31                                                  3   
32                                                  4   
33                                                  5   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  4   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  1   
42                                                  2   
43                                                  4   
44                                                  1   
45                                                  3   
46                                                  4   
47                                                  4   
48                                                  2   
49                                                  2   
50                                                  3   
51                                                  4   
52                                                  2   
53                                                  2   
54                                                  4   
55                                                  4   
56                                                  2   
57                                                  3   
58                                                  2   
59                                                  3   
60                                                  2   
61                                                  4   
62                                                  1   
63                                                  2   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  4   
68                                                  5   
69                                                  3   
70                                                  4   
71                                                  3   
72                                                  3   
73                                                  3   
74                                                  4   
75                                                  3   
76                                                  5   
77                                                  2   
78                                                  3   
79                                                  5   
80                                                  2   
81                                                  4   
82                                                  2   
83                                                  3   
84                                                  4   
85                                                  5   
86                                                  4   
87                                                  5   
88                                                  5   
89                                                  2   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                  4   
94                                                  2   
95                                                  5   
96                                                  5   

   Difficulties in Emotion Regulation Scale (DERS).20  \
0   When I'm upset, I feel ashamed at myself for f...   
1                                             ders_21   
2                                                   1   
3                                                   2   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   3   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  2   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  2   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  1   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  3   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  3   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  5   
87                                                  1   
88                                                  3   
89                                                  1   
90                                                  2   
91                                                  3   
92                                                  3   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  4   

   Difficulties in Emotion Regulation Scale (DERS).21  \
0   When I'm upset, I know that I can find a way t...   
1                                             ders_22   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   3   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  3   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  3   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  1   
22                                                  3   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  5   
30                                                  2   
31                                                  2   
32                                                  1   
33                                                  4   
34                                                  2   
35                                                  4   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  3   
44                                                  2   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  3   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  3   
56                                                  3   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  3   
64                                                  2   
65                                                  2   
66                                                  4   
67                                                  5   
68                                                  5   
69                                                  4   
70                                                  4   
71                                                  5   
72                                                  4   
73                                                  4   
74                                                  5   
75                                                  4   
76                                                  3   
77                                                  2   
78                                                  5   
79                                                  1   
80                                                  5   
81                                                  5   
82                                                  5   
83                                                  3   
84                                                  4   
85                                                  5   
86                                                  5   
87                                                  4   
88                                                  5   
89                                                  5   
90                                                  4   
91                                                  3   
92                                                  4   
93                                                  4   
94                                                  3   
95                                                  5   
96                                                  4   

   Difficulties in Emotion Regulation Scale (DERS).22  \
0   When I'm upset, I feel like I am weak. (1=Almo...   
1                                             ders_23   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   5   
9                                                   1   
10                                                  3   
11                                                  3   
12                                                  4   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  2   
42                                                  2   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  1   
64                                                  2   
65                                                  3   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  3   
70                                                  2   
71                                                  1   
72                                                  2   
73                                                  3   
74                                                  1   
75                                                  4   
76                                                  1   
77                                                  4   
78                                                  2   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  5   
92                                                  2   
93                                                  2   
94                                                  1   
95                                                  1   
96                                                  5   

   Difficulties in Emotion Regulation Scale (DERS).23  \
0   When I'm upset, I feel like I can remain in co...   
1                                             ders_24   
2                                                   1   
3                                                   1   
4                                                   3   
5                                                   3   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   5   
10                                                  4   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  1   
22                                                  3   
23                                                  2   
24                                                  1   
25                                                  3   
26                                                  1   
27                                                  2   
28                                                  1   
29                                                  4   
30                                                  1   
31                                                  4   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  4   
47                                                  4   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  4   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  4   
66                                                  2   
67                                                  4   
68                                                  5   
69                                                  3   
70                                                  5   
71                                                  4   
72                                                  2   
73                                                  4   
74                                                  5   
75                                                  3   
76                                                  5   
77                                                  5   
78                                                  5   
79                                                  1   
80                                                  5   
81                                                  5   
82                                                  3   
83                                                  4   
84                                                  5   
85                                                  5   
86                                                  4   
87                                                  4   
88                                                  4   
89                                                  3   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                  3   
94                                                  4   
95                                                  5   
96                                                  3   

   Difficulties in Emotion Regulation Scale (DERS).24  \
0   When I'm upset, I feel guilty for feeling that...   
1                                             ders_25   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  1   
21                                                  2   
22                                                  1   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  2   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  2   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  1   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  3   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  1   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  4   
89                                                  1   
90                                                  3   
91                                                  2   
92                                                  3   
93                                                  1   
94                                                  5   
95                                                  1   
96                                                  2   

   Difficulties in Emotion Regulation Scale (DERS).25  \
0   When I'm upset, I have difficulty concentratin...   
1                                             ders_26   
2                                                   4   
3                                                   2   
4                                                   2   
5                                                   3   
6                                                   4   
7                                                   1   
8                                                   4   
9                                                   2   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  3   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  4   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  4   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  4   
29                                                  5   
30                                                  2   
31                                                  3   
32                                                  4   
33                                                  3   
34                                                  3   
35                                                  3   
36                                                  2   
37                                                  3   
38                                                  3   
39                                                  2   
40                                                  3   
41                                                  2   
42                                                  1   
43                                                  3   
44                                                  2   
45                                                  2   
46                                                  3   
47                                                  4   
48                                                  2   
49                                                  2   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  1   
56                                                  2   
57                                                  2   
58                                                  2   
59                                                  4   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  3   
65                                                  4   
66                                                  5   
67                                                  2   
68                                                  2   
69                                                  4   
70                                                  2   
71                                                  3   
72                                                  2   
73                                                  3   
74                                                  2   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  3   
79                                                  2   
80                                                  4   
81                                                  2   
82                                                  2   
83                                                  2   
84                                                  2   
85                                                  2   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  4   
90                                                  3   
91                                                  4   
92                                                  1   
93                                                  4   
94                                                  4   
95                                                  1   
96                                                  5   

   Difficulties in Emotion Regulation Scale (DERS).26  \
0   When I'm upset, I have difficulty controlling ...   
1                                             ders_27   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  3   
30                                                  1   
31                                                  2   
32                                                  2   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  1   
37                                                  3   
38                                                  3   
39                                                  2   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  2   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  3   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  3   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  4   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  3   
94                                                  2   
95                                                  1   
96                                                  4   

   Difficulties in Emotion Regulation Scale (DERS).27  \
0   When I'm upset, I believe there is nothing I c...   
1                                             ders_28   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  3   
30                                                  2   
31                                                  1   
32                                                  1   
33                                                  3   
34                                                  1   
35                                                  3   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  4   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  3   
53                                                  1   
54                                                  1   
55                                                  3   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  3   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  3   
92                                                  1   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  2   

   Difficulties in Emotion Regulation Scale (DERS).28  \
0   When I'm upset, I become irritated at myself f...   
1                                             ders_29   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   2   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  4   
12                                                  2   
13                                                  1   
14                                                  1   
15                                                  3   
16                                                  2   
17                                                  2   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  2   
24                                                  2   
25                                                  1   
26                                                  2   
27                                                  1   
28                                                  3   
29                                                  5   
30                                                  2   
31                                                  1   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  2   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  2   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  4   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  4   
89                                                  1   
90                                                  4   
91                                                  3   
92                                                  3   
93                                                  2   
94                                                  1   
95                                                  1   
96                                                  2   

   Difficulties in Emotion Regulation Scale (DERS).29  \
0   When I'm upset, I start to feel very bad about...   
1                                             ders_30   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  3   
56                                                  3   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  3   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  3   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  3   
85                                                  1   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  4   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  1   

   Difficulties in Emotion Regulation Scale (DERS).30  \
0   When I'm upset, I believe that wallowing in it...   
1                                             ders_31   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  2   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  2   
46                                                  2   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  3   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  3   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  4   
66                                                  4   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  4   
76                                                  2   
77                                                  3   
78                                                  2   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  5   
89                                                  2   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  4   

   Difficulties in Emotion Regulation Scale (DERS).31  \
0   When I'm upset, I lose control over my behavio...   
1                                             ders_32   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  3   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  2   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  4   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  3   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  4   

   Difficulties in Emotion Regulation Scale (DERS).32  \
0   When I'm upset, I have difficulty thinking abo...   
1                                             ders_33   
2                                                   4   
3                                                   2   
4                                                   1   
5                                                   2   
6                                                   4   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  3   
29                                                  3   
30                                                  2   
31                                                  4   
32                                                  4   
33                                                  3   
34                                                  1   
35                                                  5   
36                                                  2   
37                                                  3   
38                                                  3   
39                                                  1   
40                                                  3   
41                                                  1   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  2   
46                                                  2   
47                                                  3   
48                                                  2   
49                                                  2   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  3   
54                                                  3   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  2   
59                                                  4   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  3   
64                                                  2   
65                                                  4   
66                                                  4   
67                                                  2   
68                                                  1   
69                                                  4   
70                                                  2   
71                                                  3   
72                                                  1   
73                                                  2   
74                                                  2   
75                                                  5   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  3   
81                                                  2   
82                                                  1   
83                                                  2   
84                                                  3   
85                                                  1   
86                                                  2   
87                                                  2   
88                                                  4   
89                                                  4   
90                                                  2   
91                                                  4   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  2   
96                                                  4   

   Difficulties in Emotion Regulation Scale (DERS).33  \
0   When I'm upset I take time to figure out what ...   
1                                             ders_34   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   3   
6                                                   4   
7                                                   2   
8                                                   3   
9                                                   2   
10                                                  1   
11                                                  4   
12                                                  5   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  4   
17                                                  4   
18                                                  3   
19                                                  3   
20                                                  4   
21                                                  1   
22                                                  4   
23                                                  3   
24                                                  2   
25                                                  2   
26                                                  4   
27                                                  1   
28                                                  3   
29                                                  5   
30                                                  2   
31                                                  1   
32                                                  4   
33                                                  4   
34                                                  4   
35                                                  4   
36                                                  1   
37                                                  1   
38                                                  3   
39                                                  5   
40                                                  4   
41                                                  3   
42                                                  5   
43                                                  3   
44                                                  5   
45                                                  1   
46                                                  2   
47                                                  4   
48                                                  4   
49                                                  2   
50                                                  5   
51                                                  2   
52                                                  3   
53                                                  4   
54                                                  3   
55                                                  2   
56                                                  3   
57                                                  4   
58                                                  3   
59                                                  2   
60                                                  2   
61                                                  1   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  2   
67                                                  1   
68                                                  4   
69                                                  1   
70                                                  4   
71                                                  5   
72                                                  2   
73                                                  5   
74                                                  4   
75                                                  4   
76                                                  1   
77                                                  2   
78                                                  5   
79                                                  3   
80                                                  4   
81                                                  4   
82                                                  3   
83                                                  3   
84                                                  5   
85                                                  1   
86                                                  3   
87                                                  4   
88                                                  5   
89                                                  5   
90                                                  3   
91                                                  3   
92                                                  1   
93                                                  3   
94                                                  1   
95                                                  5   
96                                                  3   

   Difficulties in Emotion Regulation Scale (DERS).34  \
0   When I'm upset, it takes me a long time to fee...   
1                                             ders_35   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   2   
10                                                  3   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  3   
30                                                  2   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  2   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  4   
76                                                  2   
77                                                  2   
78                                                  2   
79                                                  3   
80                                                  2   
81                                                  2   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  2   
88                                                  2   
89                                                  2   
90                                                  3   
91                                                  3   
92                                                  1   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  5   

   Difficulties in Emotion Regulation Scale (DERS).35  \
0   When I'm upset, my emotions feel overwhelming....   
1                                             ders_36   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   3   
6                                                   3   
7                                                   3   
8                                                   2   
9                                                   1   
10                                                  4   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  4   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  4   
37                                                  2   
38                                                  4   
39                                                  2   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  2   
47                                                  3   
48                                                  1   
49                                                  2   
50                                                  1   
51                                                  4   
52                                                  2   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  3   
59                                                  3   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  3   
64                                                  1   
65                                                  3   
66                                                  2   
67                                                  2   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  3   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  4   
88                                                  1   
89                                                  4   
90                                                  2   
91                                                  4   
92                                                  1   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  5   

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS)  \
0   I need 8 hours of sleep to feel refreshed and ...       
1                                              dbas_1       
2                                                 100       
3                                                  41       
4                                                 NaN       
5                                                  63       
6                                                  93       
7                                                 100       
8                                                 100       
9                                                  91       
10                                                 98       
11                                                100       
12                                                 65       
13                                                 80       
14                                                 84       
15                                                 86       
16                                                 60       
17                                                 30       
18                                                100       
19                                                 22       
20                                                 72       
21                                                 65       
22                                                 31       
23                                                 30       
24                                                 33       
25                                                 83       
26                                                 51       
27                                                 83       
28                                                 37       
29                                                 27       
30                                                 75       
31                                                 71       
32                                                 25       
33                                                 64       
34                                                 35       
35                                                 15       
36                                                100       
37                                                 52       
38                                                100       
39                                                100       
40                                                100       
41                                                 22       
42                                                 84       
43                                                 67       
44                                                 84       
45                                                 51       
46                                                100       
47                                                 77       
48                                                 78       
49                                                 28       
50                                                 71       
51                                                 65       
52                                                 78       
53                                                 27       
54                                                100       
55                                                 90       
56                                                 88       
57                                                 38       
58                                                 20       
59                                                100       
60                                                 33       
61                                                 35       
62                                                 74       
63                                                 61       
64                                                100       
65                                                 22       
66                                                 76       
67                                                 22       
68                                                 17       
69                                                 56       
70                                                 88       
71                                                 33       
72                                                 90       
73                                                 24       
74                                                 83       
75                                                 76       
76                                                 73       
77                                                 76       
78                                                 83       
79                                                 60       
80                                                100       
81                                                100       
82                                                 90       
83                                                 31       
84                                                 68       
85                                                 66       
86                                                 78       
87                                                 66       
88                                                 28       
89                                                 91       
90                                                 79       
91                                                 35       
92                                                 30       
93                                                 24       
94                                                 60       
95                                                 30       
96                                                 97       

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).1  \
0   When I don't get proper amount of sleep on a g...         
1                                              dbas_2         
2                                                   0         
3                                                  21         
4                                                   2         
5                                                  25         
6                                                  62         
7                                                  13         
8                                                  89         
9                                                  21         
10                                                 78         
11                                                100         
12                                                 21         
13                                                 80         
14                                                 70         
15                                                 96         
16                                                 22         
17                                                100         
18                                                 72         
19                                                 29         
20                                                 50         
21                                                 65         
22                                                 80         
23                                                 29         
24                                                 66         
25                                                 91         
26                                                 77         
27                                                 72         
28                                                 42         
29                                                 61         
30                                                 32         
31                                                100         
32                                                 84         
33                                                 25         
34                                                 35         
35                                                 60         
36                                                100         
37                                                 60         
38                                                 34         
39                                                  0         
40                                                100         
41                                                 57         
42                                                 92         
43                                                 65         
44                                                 61         
45                                                 71         
46                                                 90         
47                                                 32         
48                                                 22         
49                                                 27         
50                                                100         
51                                                  8         
52                                                 59         
53                                                 22         
54                                                100         
55                                                 94         
56                                                 50         
57                                                 19         
58                                                 12         
59                                                 50         
60                                                 51         
61                                                 39         
62                                                 50         
63                                                 37         
64                                                 72         
65                                                 82         
66                                                 93         
67                                                  9         
68                                                 28         
69                                                 17         
70                                                100         
71                                                 72         
72                                                 39         
73                                                 42         
74                                                 10         
75                                                 24         
76                                                 24         
77                                                 17         
78                                                 57         
79                                                 35         
80                                                 73         
81                                                 22         
82                                                 64         
83                                                 50         
84                                                 25         
85                                                 64         
86                                                 39         
87                                                 67         
88                                                 31         
89                                                 74         
90                                                 69         
91                                                 87         
92                                                  0         
93                                                 37         
94                                                100         
95                                                 72         
96                                                 19         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).2  \
0   I am concerned that chronic insomnia may have ...         
1                                              dbas_3         
2                                                   0         
3                                                   6         
4                                                   2         
5                                                   0         
6                                                  66         
7                                                   1         
8                                                  90         
9                                                   0         
10                                                  0         
11                                                  0         
12                                                  0         
13                                                 40         
14                                                  0         
15                                                 31         
16                                                  0         
17                                                  0         
18                                                  0         
19                                                  1         
20                                                 28         
21                                                 50         
22                                                 29         
23                                                 28         
24                                                 29         
25                                                 11         
26                                                 50         
27                                                 18         
28                                                  0         
29                                                  0         
30                                                  0         
31                                                 39         
32                                                  1         
33                                                 18         
34                                                 16         
35                                                 52         
36                                                 14         
37                                                 36         
38                                                  0         
39                                                  0         
40                                                  0         
41                                                 51         
42                                                  0         
43                                                  0         
44                                                 46         
45                                                100         
46                                                  0         
47                                                  0         
48                                                 28         
49                                                  0         
50                                                  0         
51                                                  0         
52                                                  0         
53                                                 21         
54                                                 15         
55                                                 71         
56                                                 10         
57                                                  0         
58                                                  0         
59                                                  0         
60                                                  0         
61                                                 64         
62                                                 23         
63                                                 39         
64                                                 19         
65                                                  0         
66                                                  1         
67                                                  0         
68                                                 80         
69                                                 14         
70                                                  0         
71                                                 67         
72                                                 27         
73                                                 63         
74                                                  0         
75                                                 57         
76                                                 47         
77                                                 63         
78                                                 57         
79                                                 37         
80                                                  0         
81                                                 17         
82                                                  0         
83                                                 22         
84                                                  0         
85                                                 51         
86                                                 37         
87                                                 82         
88                                                100         
89                                                  2         
90                                                 15         
91                                                  0         
92                                                 25         
93                                                  2         
94                                                 51         
95                                                  0         
96                                                100         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).3  \
0   I am worried that I may lose control over my a...         
1                                              dbas_4         
2                                                   0         
3                                                  16         
4                                                   1         
5                                                   0         
6                                                  17         
7                                                   1         
8                                                   9         
9                                                   0         
10                                                  0         
11                                                  7         
12                                                 21         
13                                                 19         
14                                                  0         
15                                                 62         
16                                                 10         
17                                                  0         
18                                                  0         
19                                                  6         
20                                                 14         
21                                                  2         
22                                                 23         
23                                                 22         
24                                                 30         
25                                                  6         
26                                                  0         
27                                                  0         
28                                                  0         
29                                                  0         
30                                                  7         
31                                                 22         
32                                                  3         
33                                                 20         
34                                                 19         
35                                                 55         
36                                                  0         
37                                                 70         
38                                                 24         
39                                                  0         
40                                                  0         
41                                                 14         
42                                                  0         
43                                                  0         
44                                                  0         
45                                                 28         
46                                                  1         
47                                                 83         
48                                                  0         
49                                                  0         
50                                                  0         
51                                                  0         
52                                                 42         
53                                                 19         
54                                                  0         
55                                                  6         
56                                                 13         
57                                                  0         
58                                                  0         
59                                                 50         
60                                                 60         
61                                                 59         
62                                                 77         
63                                                 31         
64                                                 67         
65                                                 76         
66                                                  9         
67                                                  8         
68                                                 29         
69                                                 20         
70                                                  0         
71                                                 65         
72                                                  0         
73                                                 50         
74                                                  0         
75                                                 78         
76                                                 33         
77                                                 63         
78                                                 61         
79                                                 43         
80                                                  0         
81                                                  0         
82                                                  0         
83                                                 66         
84                                                  0         
85                                                 57         
86                                                 31         
87                                                 15         
88                                                 31         
89                                                  8         
90                                                 10         
91                                                  0         
92                                                  0         
93                                                  2         
94                                                 56         
95                                                  9         
96                                                100         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).4  \
0   After a poor night's sleep, I know that it wil...         
1                                              dbas_5         
2                                                  70         
3                                                  10         
4                                                   8         
5                                                  26         
6                                                  80         
7                                                  76         
8                                                  89         
9                                                 100         
10                                                 72         
11                                                 72         
12                                                 23         
13                                                 91         
14                                                 70         
15                                                100         
16                                                 74         
17                                                 20         
18                                                 83         
19                                                 41         
20                                                 83         
21                                                 64         
22                                                 56         
23                                                 23         
24                                                 81         
25                                                 97         
26                                                 65         
27                                                 60         
28                                                 78         
29                                                 65         
30                                                 66         
31                                                100         
32                                                 77         
33                                                 27         
34                                                 67         
35                                                 77         
36                                                 78         
37                                                 60         
38                                                 76         
39                                                 76         
40                                                100         
41                                                 58         
42                                                 30         
43                                                 59         
44                                                 29         
45                                                 75         
46                                                 91         
47                                                100         
48                                                 32         
49                                                  0         
50                                                 81         
51                                                 12         
52                                                 73         
53                                                 16         
54                                                 44         
55                                                100         
56                                                 79         
57                                                 34         
58                                                 17         
59                                                 69         
60                                                 64         
61                                                 42         
62                                                 24         
63                                                 55         
64                                                 70         
65                                                 86         
66                                                 87         
67                                                 78         
68                                                 21         
69                                                 63         
70                                                 97         
71                                                100         
72                                                 68         
73                                                 67         
74                                                 25         
75                                                 85         
76                                                 38         
77                                                 59         
78                                                 80         
79                                                 72         
80                                                 88         
81                                                 72         
82                                                 62         
83                                                 27         
84                                                 50         
85                                                 87         
86                                                 63         
87                                                 92         
88                                                 26         
89                                                 60         
90                                                 95         
91                                                 75         
92                                                 44         
93                                                 65         
94                                                 78         
95                                                 34         
96                                                 99         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).5  \
0   In order to be alert and funciton well during ...         
1                                              dbas_6         
2                                                   0         
3                                                   4         
4                                                   3         
5                                                   0         
6                                                 100         
7                                                   1         
8                                                 100         
9                                                   3         
10                                                  0         
11                                                 33         
12                                                 34         
13                                                 71         
14                                                 71         
15                                                 93         
16                                                  5         
17                                                  0         
18                                                 15         
19                                                  0         
20                                                 29         
21                                                 11         
22                                                 13         
23                                                 29         
24                                                 50         
25                                                 71         
26                                                 14         
27                                                  0         
28                                                  0         
29                                                  0         
30                                                  0         
31                                                  0         
32                                                 50         
33                                                 23         
34                                                 97         
35                                                 90         
36                                                 50         
37                                                 11         
38                                                 10         
39                                                  0         
40                                                 17         
41                                                 70         
42                                                  0         
43                                                  0         
44                                                  0         
45                                                 12         
46                                                 66         
47                                                 17         
48                                                  0         
49                                                  0         
50                                                  0         
51                                                 16         
52                                                 66         
53                                                 19         
54                                                 51         
55                                                  0         
56                                                 61         
57                                                  0         
58                                                 30         
59                                                 50         
60                                                  0         
61                                                 44         
62                                                 69         
63                                                 64         
64                                                 22         
65                                                 14         
66                                                  3         
67                                                  0         
68                                                 63         
69                                                  0         
70                                                 18         
71                                                  9         
72                                                  0         
73                                                 50         
74                                                  0         
75                                                 55         
76                                                 66         
77                                                  9         
78                                                 70         
79                                                  0         
80                                                  4         
81                                                 10         
82                                                 10         
83                                                 72         
84                                                  1         
85                                                  0         
86                                                 23         
87                                                 74         
88                                                 78         
89                                                  6         
90                                                 23         
91                                                  7         
92                                                  0         
93                                                  0         
94                                                  0         
95                                                  0         
96                                                 66         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).6  \
0   When I feel irritable, depressed, or anxious d...         
1                                              dbas_7         
2                                                  79         
3                                                   5         
4                                                   3         
5                                                   0         
6                                                  66         
7                                                  68         
8                                                  26         
9                                                   1         
10                                                 27         
11                                                 24         
12                                                 27         
13                                                 77         
14                                                 14         
15                                                100         
16                                                 32         
17                                                  0         
18                                                 13         
19                                                 16         
20                                                 67         
21                                                 65         
22                                                 31         
23                                                 52         
24                                                 38         
25                                                 66         
26                                                 17         
27                                                 68         
28                                                 50         
29                                                 16         
30                                                 29         
31                                                 73         
32                                                 58         
33                                                 34         
34                                                 67         
35                                                 36         
36                                                 86         
37                                                 38         
38                                                  0         
39                                                  0         
40                                                 71         
41                                                  0         
42                                                  0         
43                                                 35         
44                                                  0         
45                                                 68         
46                                                 40         
47                                                 72         
48                                                 26         
49                                                 11         
50                                                 67         
51                                                  0         
52                                                 35         
53                                                 18         
54                                                 34         
55                                                 49         
56                                                 22         
57                                                 38         
58                                                 22         
59                                                 24         
60                                                 31         
61                                                 57         
62                                                 29         
63                                                 40         
64                                                 52         
65                                                 66         
66                                                 69         
67                                                 59         
68                                                 57         
69                                                 64         
70                                                 12         
71                                                 72         
72                                                 63         
73                                                 71         
74                                                 19         
75                                                 75         
76                                                 73         
77                                                 50         
78                                                 68         
79                                                 62         
80                                                 87         
81                                                 19         
82                                                 55         
83                                                 27         
84                                                  2         
85                                                100         
86                                                 12         
87                                                 92         
88                                                 18         
89                                                 97         
90                                                 57         
91                                                 68         
92                                                 53         
93                                                 15         
94                                                 44         
95                                                 40         
96                                                 77         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).7  \
0   When I sleep poorly on one night, I know it wi...         
1                                              dbas_8         
2                                                  87         
3                                                   0         
4                                                   3         
5                                                   0         
6                                                  28         
7                                                   3         
8                                                  85         
9                                                   0         
10                                                 27         
11                                                 12         
12                                                 61         
13                                                 17         
14                                                  0         
15                                                 81         
16                                                 30         
17                                                 33         
18                                                 26         
19                                                  0         
20                                                 50         
21                                                 13         
22                                                 37         
23                                                 26         
24                                                 58         
25                                                 72         
26                                                 17         
27                                                  8         
28                                                 75         
29                                                 67         
30                                                 22         
31                                                 68         
32                                                 34         
33                                                 33         
34                                                 64         
35                                                 72         
36                                                100         
37                                                 22         
38                                                 18         
39                                                 65         
40                                                  0         
41                                                  0         
42                                                 15         
43                                                 40         
44                                                 24         
45                                                 57         
46                                                 13         
47                                                 68         
48                                                 22         
49                                                 17         
50                                                 33         
51                                                  0         
52                                                 41         
53                                                 25         
54                                                 11         
55                                                 75         
56                                                 21         
57                                                 19         
58                                                 10         
59                                                 24         
60                                                 29         
61                                                  0         
62                                                 59         
63                                                 59         
64                                                 53         
65                                                 10         
66                                                 14         
67                                                  0         
68                                                  0         
69                                                  0         
70                                                 16         
71                                                 52         
72                                                  0         
73                                                 62         
74                                                  0         
75                                                 65         
76                                                 13         
77                                                 21         
78                                                 28         
79                                                 14         
80                                                  0         
81                                                 18         
82                                                 39         
83                                                 69         
84                                                  7         
85                                                100         
86                                                 56         
87                                                 23         
88                                                  0         
89                                                 25         
90                                                 64         
91                                                 19         
92                                                 20         
93                                                  0         
94                                                 12         
95                                                  0         
96                                                 68         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).8  \
0   Without an adequate night's sleep, I can hardl...         
1                                              dbas_9         
2                                                   0         
3                                                   7         
4                                                  13         
5                                                  17         
6                                                  47         
7                                                  35         
8                                                 100         
9                                                   0         
10                                                 28         
11                                                  8         
12                                                 24         
13                                                 69         
14                                                 51         
15                                                 90         
16                                                 65         
17                                                  0         
18                                                 61         
19                                                  8         
20                                                 50         
21                                                 14         
22                                                 28         
23                                                  9         
24                                                 59         
25                                                 83         
26                                                 15         
27                                                 11         
28                                                 37         
29                                                 15         
30                                                 71         
31                                                 33         
32                                                 35         
33                                                 38         
34                                                 36         
35                                                 51         
36                                                 71         
37                                                 40         
38                                                 22         
39                                                 64         
40                                                  0         
41                                                  0         
42                                                  0         
43                                                 47         
44                                                 20         
45                                                 30         
46                                                 18         
47                                                 45         
48                                                 18         
49                                                  0         
50                                                 29         
51                                                  0         
52                                                 26         
53                                                 24         
54                                                  6         
55                                                 31         
56                                                 14         
57                                                 35         
58                                                  0         
59                                                 63         
60                                                 12         
61                                                 12         
62                                                 12         
63                                                 26         
64                                                 75         
65                                                 55         
66                                                 82         
67                                                 13         
68                                                  0         
69                                                  8         
70                                                 10         
71                                                 60         
72                                                 29         
73                                                 24         
74                                                 14         
75                                                 64         
76                                                 25         
77                                                 32         
78                                                 55         
79                                                 18         
80                                                 71         
81                                                 37         
82                                                 56         
83                                                 29         
84                                                  1         
85                                                 36         
86                                                 19         
87                                                 64         
88                                                  0         
89                                                 25         
90                                                 36         
91                                                 38         
92                                                 11         
93                                                  2         
94                                                 48         
95                                                 13         
96                                                 78         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).9  \
0   I can't ever predict whether I'll have a good ...         
1                                             dbas_10         
2                                                   0         
3                                                   6         
4                                                  79         
5                                                  13         
6                                                  50         
7                                                  26         
8                                                  16         
9                                                   0         
10                                                 28         
11                                                 85         
12                                                 73         
13                                                 24         
14                                                  0         
15                                                 25         
16                                                 28         
17                                                 26         
18                                                  2         
19                                                 28         
20                                                 25         
21                                                 13         
22                                                 73         
23                                                 15         
24                                                 10         
25                                                 24         
26                                                 14         
27                                                 42         
28                                                  0         
29                                                 20         
30                                                 87         
31                                                 33         
32                                                  2         
33                                                 39         
34                                                 17         
35                                                 79         
36                                                 87         
37                                                 62         
38                                                 21         
39                                                100         
40                                                  0         
41                                                100         
42                                                 13         
43                                                  0         
44                                                  2         
45                                                  0         
46                                                 14         
47                                                 83         
48                                                 81         
49                                                 48         
50                                                 35         
51                                                 20         
52                                                 22         
53                                                 30         
54                                                 22         
55                                                 52         
56                                                 20         
57                                                 50         
58                                                 68         
59                                                 82         
60                                                 90         
61                                                100         
62                                                 74         
63                                                 73         
64                                                 60         
65                                                 85         
66                                                  7         
67                                                100         
68                                                 26         
69                                                 89         
70                                                 23         
71                                                 76         
72                                                  4         
73                                                 86         
74                                                 46         
75                                                 97         
76                                                 87         
77                                                 93         
78                                                 28         
79                                                100         
80                                                 46         
81                                                 13         
82                                                  0         
83                                                 69         
84                                                 38         
85                                                 67         
86                                                 81         
87                                                 71         
88                                                 29         
89                                                 94         
90                                                 65         
91                                                  9         
92                                                 65         
93                                                 98         
94                                                 83         
95                                                 82         
96                                                 27         

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).10  \
0   I have little ability to manage the negative c...          
1                                             dbas_11          
2                                                  25          
3                                                  10          
4                                                  80          
5                                                  17          
6                                                  40          
7                                                  26          
8                                                  28          
9                                                   4          
10                                                 28          
11                                                 10          
12                                                 33          
13                                                 75          
14                                                  0          
15                                                 21          
16                                                 11          
17                                                 16          
18                                                 18          
19                                                  6          
20                                                 16          
21                                                 32          
22                                                 66          
23                                                 50          
24                                                 50          
25                                                 14          
26                                                 14          
27                                                 84          
28                                                 51          
29                                                 23          
30                                                 13          
31                                                 41          
32                                                  5          
33                                                 35          
34                                                 36          
35                                                 71          
36                                                 56          
37                                                 80          
38                                                 38          
39                                                 74          
40                                                 50          
41                                                 24          
42                                                  0          
43                                                100          
44                                                 27          
45                                                 37          
46                                                 50          
47                                                 64          
48                                                 66          
49                                                 18          
50                                                 23          
51                                                  0          
52                                                 62          
53                                                 26          
54                                                 20          
55                                                 74          
56                                                 27          
57                                                 62          
58                                                 16          
59                                                 61          
60                                                 85          
61                                                 24          
62                                                 25          
63                                                 30          
64                                                 38          
65                                                 75          
66                                                 27          
67                                                 63          
68                                                  0          
69                                                 17          
70                                                 27          
71                                                 66          
72                                                 26          
73                                                 77          
74                                                 18          
75                                                 87          
76                                                 73          
77                                                 41          
78                                                 57          
79                                                 72          
80                                                 68          
81                                                  9          
82                                                 11          
83                                                 70          
84                                                  9          
85                                                 57          
86                                                 32          
87                                                 25          
88                                                 26          
89                                                 22          
90                                                 63          
91                                                 61          
92                                                 50          
93                                                 27          
94                                                 61          
95                                                 34          
96                                                 28          

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).11  \
0   When I feel tired, have no energy, or just see...          
1                                             dbas_12          
2                                                  74          
3                                                  54          
4                                                  60          
5                                                  72          
6                                                  59          
7                                                  82          
8                                                  89          
9                                                  10          
10                                                 29          
11                                                 90          
12                                                 35          
13                                                 80          
14                                                 29          
15                                                100          
16                                                 69          
17                                                 12          
18                                                 64          
19                                                 10          
20                                                 65          
21                                                 66          
22                                                 24          
23                                                 44          
24                                                 90          
25                                                 84          
26                                                 82          
27                                                 88          
28                                                 78          
29                                                 30          
30                                                 69          
31                                                 82          
32                                                 86          
33                                                 38          
34                                                 73          
35                                                 75          
36                                                100          
37                                                 57          
38                                                 50          
39                                                 64          
40                                                100          
41                                                 51          
42                                                 11          
43                                                 19          
44                                                 71          
45                                                 35          
46                                                 82          
47                                                 71          
48                                                 61          
49                                                  0          
50                                                 64          
51                                                 23          
52                                                 83          
53                                                 30          
54                                                 58          
55                                                100          
56                                                 78          
57                                                 62          
58                                                 56          
59                                                 72          
60                                                 71          
61                                                 37          
62                                                 26          
63                                                 65          
64                                                 74          
65                                                 90          
66                                                 78          
67                                                 67          
68                                                 29          
69                                                 71          
70                                                 69          
71                                                 72          
72                                                 65          
73                                                 77          
74                                                 74          
75                                                 85          
76                                                 76          
77                                                 58          
78                                                 57          
79                                                100          
80                                                100          
81                                                 68          
82                                                 73          
83                                                 73          
84                                                 57          
85                                                100          
86                                                 64          
87                                                 94          
88                                                 21          
89                                                 61          
90                                                 88          
91                                                 72          
92                                                 67          
93                                                 62          
94                                                 74          
95                                                 70          
96                                                 69          

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).12  \
0   I believe insomnia is essentially the result o...          
1                                             dbas_13          
2                                                  17          
3                                                   5          
4                                                   0          
5                                                  68          
6                                                  84          
7                                                  76          
8                                                  67          
9                                                   0          
10                                                  0          
11                                                 50          
12                                                 30          
13                                                 50          
14                                                 51          
15                                                 53          
16                                                 74          
17                                                  0          
18                                                 18          
19                                                 50          
20                                                 26          
21                                                 50          
22                                                 65          
23                                                 50          
24                                                 50          
25                                                 10          
26                                                 81          
27                                                 31          
28                                                 50          
29                                                 67          
30                                                 84          
31                                                 38          
32                                                 72          
33                                                 37          
34                                                 28          
35                                                  0          
36                                                 51          
37                                                 23          
38                                                  0          
39                                                 32          
40                                                 50          
41                                                 84          
42                                                  0          
43                                                100          
44                                                 30          
45                                                 66          
46                                                 69          
47                                                 63          
48                                                 50          
49                                                 62          
50                                                 16          
51                                                 50          
52                                                 46          
53                                                 69          
54                                                 51          
55                                                 31          
56                                                 75          
57                                                 51          
58                                                 50          
59                                                 48          
60                                                 50          
61                                                 33          
62                                                 50          
63                                                 28          
64                                                 11          
65                                                  0          
66                                                  1          
67                                                 88          
68                                                  1          
69                                                 11          
70                                                 65          
71                                                100          
72                                                 28          
73                                                 50          
74                                                  0          
75                                                 57          
76                                                 31          
77                                                 68          
78                                                 54          
79                                                 23          
80                                                 11          
81                                                 62          
82                                                 61          
83                                                 71          
84                                                 50          
85                                                 43          
86                                                 27          
87                                                 74          
88                                                 50          
89                                                 49          
90                                                 90          
91                                                  0          
92                                                 50          
93                                                 97          
94                                                 50          
95                                                 43          
96                                                100          

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).13  \
0   I feel insomnia is ruining my ability to enjoy...          
1                                             dbas_14          
2                                                   4          
3                                                   0          
4                                                   3          
5                                                   0          
6                                                  45          
7                                                   0          
8                                                  77          
9                                                   0          
10                                                 18          
11                                                  0          
12                                                  0          
13                                                 63          
14                                                  0          
15                                                  8          
16                                                  2          
17                                                  0          
18                                                  2          
19                                                  0          
20                                                 10          
21                                                 50          
22                                                 29          
23                                                 24          
24                                                 22          
25                                                  6          
26                                                 15          
27                                                  0          
28                                                  0          
29                                                  0          
30                                                 82          
31                                                 19          
32                                                  0          
33                                                 35          
34                                                  0          
35                                                 55          
36                                                  3          
37                                                 55          
38                                                  0          
39                                                 34          
40                                                  0          
41                                                  0          
42                                                  0          
43                                                  0          
44                                                  0          
45                                                  0          
46                                                  0          
47                                                 36          
48                                                  0          
49                                                  0          
50                                                  0          
51                                                  1          
52                                                  6          
53                                                 28          
54                                                  0          
55                                                 76          
56                                                  6          
57                                                  0          
58                                                  0          
59                                                 50          
60                                                 14          
61                                                  0          
62                                                 21          
63                                                 11          
64                                                 58          
65                                                  0          
66                                                  7          
67                                                  0          
68                                                  0          
69                                                  4          
70                                                  0          
71                                                  7          
72                                                  8          
73                                                 39          
74                                                  0          
75                                                 43          
76                                                 64          
77                                                 51          
78                                                 51          
79                                                 62          
80                                                  0          
81                                                  6          
82                                                  0          
83                                                 27          
84                                                  2          
85                                                 57          
86                                                 27          
87                                                 77          
88                                                  0          
89                                                 28          
90                                                  8          
91                                                 10          
92                                                  0          
93                                                  1          
94                                                 63          
95                                                  0          
96                                                100          

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).14  \
0   Medication is probably the only solution to sl...          
1                                             dbas_15          
2                                                   4          
3                                                   0          
4                                                   1          
5                                                   0          
6                                                  43          
7                                                   2          
8                                                   0          
9                                                   1          
10                                                  0          
11                                                  0          
12                                                  0          
13                                                 32          
14                                                  0          
15                                                 37          
16                                                  0          
17                                                  0          
18                                                 39          
19                                                  0          
20                                                  0          
21                                                  4          
22                                                 14          
23                                                 17          
24                                                 27          
25                                                  9          
26                                                 38          
27                                                  0          
28                                                 50          
29                                                 14          
30                                                 23          
31                                                  0          
32                                                 52          
33                                                 28          
34                                                 15          
35                                                  0          
36                                                 38          
37                                                 39          
38                                                  0          
39                                                  0          
40                                                  0          
41                                                  0          
42                                                  0          
43                                                  0          
44                                                  0          
45                                                 28          
46                                                  9          
47                                                 61          
48                                                  0          
49                                                  0          
50                                                  0          
51                                                  0          
52                                                  7          
53                                                 19          
54                                                  4          
55                                                  0          
56                                                 13          
57                                                  0          
58                                                  8          
59                                                 25          
60                                                  0          
61                                                 24          
62                                                 24          
63                                                 11          
64                                                 37          
65                                                  0          
66                                                  6          
67                                                  0          
68                                                  0          
69                                                  4          
70                                                  0          
71                                                 12          
72                                                  1          
73                                                 35          
74                                                  0          
75                                                 68          
76                                                 46          
77                                                 13          
78                                                  6          
79                                                 22          
80                                                  0          
81                                                  0          
82                                                 41          
83                                                 23          
84                                                  1          
85                                                  0          
86                                                  0          
87                                                  7          
88                                                  0          
89                                                  1          
90                                                 24          
91                                                  0          
92                                                  0          
93                                                  2          
94                                                  0          
95                                                  0          
96                                                 24          

   Dysfunctional Beliefs and Attitudes about Sleep (DBAS).15  \
0   I avoid or cancel obligations (social, family)...          
1                                             dbas_16          
2                                                   0          
3                                                   4          
4                                                   1          
5                                                  13          
6                                                   5          
7                                                   0          
8                                                  82          
9                                                   0          
10                                                 33          
11                                                  0          
12                                                 15          
13                                                 58          
14                                                  0          
15                                                 62          
16                                                  0          
17                                                  0          
18                                                 22          
19                                                  9          
20                                                 50          
21                                                 30          
22                                                 58          
23                                                 69          
24                                                 32          
25                                                 24          
26                                                 17          
27                                                  0          
28                                                  0          
29                                                  0          
30                                                  0          
31                                                 59          
32                                                  0          
33                                                 19          
34                                                 23          
35                                                 66          
36                                                 46          
37                                                 29          
38                                                 20          
39                                                  0          
40                                                  0          
41                                                  0          
42                                                  0          
43                                                  3          
44                                                  0          
45                                                 18          
46                                                 16          
47                                                 64          
48                                                 13          
49                                                  0          
50                                                  0          
51                                                  3          
52                                                  4          
53                                                 18          
54                                                  0          
55                                                 13          
56                                                 10          
57                                                 18          
58                                                  0          
59                                                 63          
60                                                  0          
61                                                  0          
62                                                 36          
63                                                 18          
64                                                 40          
65                                                  0          
66                                                 62          
67                                                  0          
68                                                 25          
69                                                  6          
70                                                  0          
71                                                 31          
72                                                 61          
73                                                  0          
74                                                  0          
75                                                 25          
76                                                  2          
77                                                 14          
78                                                 74          
79                                                  0          
80                                                  0          
81                                                  9          
82                                                  0          
83                                                 29          
84                                                  2          
85                                                  0          
86                                                  0          
87                                                 69          
88                                                  0          
89                                                  0          
90                                                 58          
91                                                  0          
92                                                  0          
93                                                  0          
94                                                 61          
95                                                  0          
96                                                 68          

    The Ford insomnia Response to Stress Test (FIRST)  \
0   Before an important meeting the next day (1=No...   
1                                             first_1   
2                                                   1   
3                                                   2   
4                                                   2   
5                                                   1   
6                                                   3   
7                                                   2   
8                                                   2   
9                                                   3   
10                                                  3   
11                                                  2   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  3   
16                                                  4   
17                                                  3   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  3   
31                                                  2   
32                                                  2   
33                                                  2   
34                                                  2   
35                                                  4   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  2   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  2   
44                                                  2   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  3   
49                                                  3   
50                                                  2   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  2   
61                                                  2   
62                                                  3   
63                                                  3   
64                                                  4   
65                                                  2   
66                                                  2   
67                                                  4   
68                                                  3   
69                                                  4   
70                                                  1   
71                                                  3   
72                                                  2   
73                                                  4   
74                                                  2   
75                                                  4   
76                                                  3   
77                                                  2   
78                                                  4   
79                                                  3   
80                                                  4   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  4   
85                                                  2   
86                                                  2   
87                                                  3   
88                                                  2   
89                                                  3   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  4   
94                                                  4   
95                                                  4   
96                                                  2   

   The Ford insomnia Response to Stress Test (FIRST).1  \
0   After a stressful experience during the day (1...    
1                                             first_2    
2                                                   2    
3                                                   1    
4                                                   1    
5                                                   2    
6                                                   3    
7                                                   1    
8                                                   1    
9                                                   2    
10                                                  2    
11                                                  1    
12                                                  2    
13                                                  3    
14                                                  1    
15                                                  3    
16                                                  1    
17                                                  1    
18                                                  1    
19                                                  1    
20                                                  2    
21                                                  2    
22                                                  2    
23                                                  2    
24                                                  2    
25                                                  3    
26                                                  1    
27                                                  1    
28                                                  1    
29                                                  1    
30                                                  2    
31                                                  3    
32                                                  1    
33                                                  1    
34                                                  2    
35                                                  2    
36                                                  3    
37                                                  3    
38                                                  2    
39                                                  1    
40                                                  1    
41                                                  1    
42                                                  1    
43                                                  1    
44                                                  1    
45                                                  1    
46                                                  2    
47                                                  2    
48                                                  3    
49                                                  1    
50                                                  1    
51                                                  2    
52                                                  1    
53                                                  2    
54                                                  3    
55                                                  2    
56                                                  2    
57                                                  2    
58                                                  1    
59                                                  2    
60                                                  1    
61                                                  3    
62                                                  3    
63                                                  3    
64                                                  3    
65                                                  1    
66                                                  3    
67                                                  2    
68                                                  3    
69                                                  4    
70                                                  1    
71                                                  4    
72                                                  1    
73                                                  4    
74                                                  2    
75                                                  4    
76                                                  2    
77                                                  2    
78                                                  3    
79                                                  4    
80                                                  4    
81                                                  2    
82                                                  1    
83                                                  3    
84                                                  2    
85                                                  2    
86                                                  2    
87                                                  2    
88                                                  2    
89                                                  4    
90                                                  2    
91                                                  4    
92                                                  2    
93                                                  2    
94                                                  2    
95                                                  3    
96                                                  1    

   The Ford insomnia Response to Stress Test (FIRST).2  \
0   After a stressful experience in the evening (1...    
1                                             first_3    
2                                                   2    
3                                                   2    
4                                                   1    
5                                                   2    
6                                                   4    
7                                                   2    
8                                                   3    
9                                                   2    
10                                                  2    
11                                                  1    
12                                                  2    
13                                                  4    
14                                                  1    
15                                                  3    
16                                                  2    
17                                                  1    
18                                                  2    
19                                                  2    
20                                                  3    
21                                                  2    
22                                                  2    
23                                                  2    
24                                                  3    
25                                                  3    
26                                                  1    
27                                                  2    
28                                                  1    
29                                                  2    
30                                                  2    
31                                                  3    
32                                                  2    
33                                                  1    
34                                                  2    
35                                                  4    
36                                                  2    
37                                                  3    
38                                                  3    
39                                                  1    
40                                                  1    
41                                                  2    
42                                                  2    
43                                                  1    
44                                                  1    
45                                                  1    
46                                                  3    
47                                                  2    
48                                                  3    
49                                                  2    
50                                                  1    
51                                                  1    
52                                                  2    
53                                                  2    
54                                                  3    
55                                                  2    
56                                                  2    
57                                                  3    
58                                                  2    
59                                                  3    
60                                                  2    
61                                                  3    
62                                                  3    
63                                                  3    
64                                                  4    
65                                                  2    
66                                                  2    
67                                                  3    
68                                                  4    
69                                                  4    
70                                                  1    
71                                                  4    
72                                                  1    
73                                                  4    
74                                                  3    
75                                                  4    
76                                                  2    
77                                                  2    
78                                                  4    
79                                                  4    
80                                                  4    
81                                                  2    
82                                                  2    
83                                                  3    
84                                                  2    
85                                                  3    
86                                                  2    
87                                                  2    
88                                                  2    
89                                                  4    
90                                                  3    
91                                                  4    
92                                                  2    
93                                                  2    
94                                                  2    
95                                                  3    
96                                                  1    

   The Ford insomnia Response to Stress Test (FIRST).3  \
0   After getting bad news during the day (1=Not L...    
1                                             first_4    
2                                                   2    
3                                                   3    
4                                                   2    
5                                                   1    
6                                                   4    
7                                                   1    
8                                                   4    
9                                                   1    
10                                                  2    
11                                                  2    
12                                                  3    
13                                                  3    
14                                                  1    
15                                                  2    
16                                                  2    
17                                                  2    
18                                                  2    
19                                                  2    
20                                                  2    
21                                                  1    
22                                                  2    
23                                                  3    
24                                                  3    
25                                                  3    
26                                                  1    
27                                                  1    
28                                                  2    
29                                                  2    
30                                                  2    
31                                                  3    
32                                                  2    
33                                                  2    
34                                                  2    
35                                                  4    
36                                                  3    
37                                                  4    
38                                                  3    
39                                                  2    
40                                                  1    
41                                                  3    
42                                                  2    
43                                                  3    
44                                                  2    
45                                                  3    
46                                                  2    
47                                                  3    
48                                                  3    
49                                                  3    
50                                                  3    
51                                                  2    
52                                                  2    
53                                                  1    
54                                                  4    
55                                                  2    
56                                                  2    
57                                                  3    
58                                                  2    
59                                                  2    
60                                                  3    
61                                                  3    
62                                                  4    
63                                                  4    
64                                                  4    
65                                                  2    
66                                                  1    
67                                                  3    
68                                                  4    
69                                                  3    
70                                                  3    
71                                                  3    
72                                                  2    
73                                                  4    
74                                                  4    
75                                                  3    
76                                                  2    
77                                                  4    
78                                                  4    
79                                                  3    
80                                                  4    
81                                                  1    
82                                                  1    
83                                                  3    
84                                                  3    
85                                                  4    
86                                                  2    
87                                                  3    
88                                                  3    
89                                                  3    
90                                                  1    
91                                                  3    
92                                                  2    
93                                                  2    
94                                                  1    
95                                                  3    
96                                                  2    

   The Ford insomnia Response to Stress Test (FIRST).4  \
0   After watching a frightening movie or TV show ...    
1                                             first_5    
2                                                   2    
3                                                   2    
4                                                   1    
5                                                   1    
6                                                   3    
7                                                   2    
8                                                   2    
9                                                   3    
10                                                  1    
11                                                  1    
12                                                  2    
13                                                  4    
14                                                  1    
15                                                  2    
16                                                  1    
17                                                  1    
18                                                  2    
19                                                  1    
20                                                  3    
21                                                  1    
22                                                  2    
23                                                  1    
24                                                  2    
25                                                  2    
26                                                  1    
27                                                  3    
28                                                  1    
29                                                  2    
30                                                  2    
31                                                  1    
32                                                  1    
33                                                  1    
34                                                  3    
35                                                  2    
36                                                  4    
37                                                  1    
38                                                  2    
39                                                  2    
40                                                  1    
41                                                  1    
42                                                  1    
43                                                  4    
44                                                  2    
45                                                  1    
46                                                  3    
47                                                  2    
48                                                  3    
49                                                  1    
50                                                  2    
51                                                  2    
52                                                  2    
53                                                  1    
54                                                  2    
55                                                  2    
56                                                  1    
57                                                  1    
58                                                  1    
59                                                  3    
60                                                  3    
61                                                  2    
62                                                  2    
63                                                  2    
64                                                  2    
65                                                  2    
66                                                  4    
67                                                  4    
68                                                  3    
69                                                  3    
70                                                  2    
71                                                  2    
72                                                  2    
73                                                  4    
74                                                  2    
75                                                  4    
76                                                  1    
77                                                  3    
78                                                  2    
79                                                  4    
80                                                  3    
81                                                  1    
82                                                  2    
83                                                  3    
84                                                  1    
85                                                  1    
86                                                  1    
87                                                  2    
88                                                  1    
89                                                  1    
90                                                  1    
91                                                  4    
92                                                  1    
93                                                  2    
94                                                  2    
95                                                  4    
96                                                  4    

   The Ford insomnia Response to Stress Test (FIRST).5  \
0   After having a bad day at work (or at school) ...    
1                                             first_6    
2                                                   2    
3                                                   1    
4                                                   3    
5                                                   1    
6                                                   3    
7                                                   2    
8                                                   2    
9                                                   2    
10                                                  1    
11                                                  1    
12                                                  2    
13                                                  3    
14                                                  1    
15                                                  3    
16                                                  2    
17                                                  1    
18                                                  1    
19                                                  1    
20                                                  2    
21                                                  2    
22                                                  2    
23                                                  3    
24                                                  2    
25                                                  2    
26                                                  1    
27                                                  1    
28                                                  1    
29                                                  2    
30                                                  1    
31                                                  3    
32                                                  1    
33                                                  2    
34                                                  1    
35                                                  2    
36                                                  2    
37                                                  2    
38                                                  3    
39                                                  1    
40                                                  1    
41                                                  1    
42                                                  1    
43                                                  1    
44                                                  1    
45                                                  2    
46                                                  2    
47                                                  2    
48                                                  2    
49                                                  1    
50                                                  2    
51                                                  1    
52                                                  2    
53                                                  1    
54                                                  2    
55                                                  3    
56                                                  2    
57                                                  1    
58                                                  1    
59                                                  2    
60                                                  2    
61                                                  4    
62                                                  2    
63                                                  2    
64                                                  4    
65                                                  1    
66                                                  1    
67                                                  4    
68                                                  4    
69                                                  3    
70                                                  1    
71                                                  3    
72                                                  1    
73                                                  4    
74                                                  2    
75                                                  3    
76                                                  1    
77                                                  2    
78                                                  1    
79                                                  2    
80                                                  2    
81                                                  2    
82                                                  1    
83                                                  3    
84                                                  1    
85                                                  4    
86                                                  2    
87                                                  2    
88                                                  1    
89                                                  2    
90                                                  1    
91                                                  2    
92                                                  1    
93                                                  2    
94                                                  2    
95                                                  2    
96                                                  3    

   The Ford insomnia Response to Stress Test (FIRST).6  \
0   After an argument (1=Not Likely\n2=Somewhat Li...    
1                                             first_7    
2                                                   2    
3                                                   1    
4                                                   2    
5                                                   2    
6                                                   4    
7                                                   3    
8                                                   4    
9                                                   1    
10                                                  2    
11                                                  3    
12                                                  2    
13                                                  4    
14                                                  1    
15                                                  1    
16                                                  2    
17                                                  1    
18                                                  2    
19                                                  2    
20                                                  2    
21                                                  2    
22                                                  2    
23                                                  3    
24                                                  3    
25                                                  3    
26                                                  1    
27                                                  3    
28                                                  1    
29                                                  2    
30                                                  1    
31                                                  3    
32                                                  2    
33                                                  2    
34                                                  2    
35                                                  4    
36                                                  3    
37                                                  4    
38                                                  3    
39                                                  1    
40                                                  3    
41                                                  3    
42                                                  2    
43                                                  3    
44                                                  1    
45                                                  2    
46                                                  4    
47                                                  2    
48                                                  2    
49                                                  1    
50                                                  2    
51                                                  1    
52                                                  3    
53                                                  1    
54                                                  2    
55                                                  2    
56                                                  2    
57                                                  2    
58                                                  2    
59                                                  1    
60                                                  2    
61                                                  3    
62                                                  3    
63                                                  2    
64                                                  3    
65                                                  3    
66                                                  1    
67                                                  3    
68                                                  2    
69                                                  3    
70                                                  1    
71                                                  2    
72                                                  1    
73                                                  4    
74                                                  3    
75                                                  2    
76                                                  1    
77                                                  3    
78                                                  2    
79                                                  3    
80                                                  3    
81                                                  1    
82                                                  2    
83                                                  3    
84                                                  3    
85                                                  3    
86                                                  2    
87                                                  3    
88                                                  1    
89                                                  4    
90                                                  2    
91                                                  3    
92                                                  1    
93                                                  2    
94                                                  2    
95                                                  1    
96                                                  2    

   The Ford insomnia Response to Stress Test (FIRST).7  \
0   Before having to speak in public (1=Not Likely...    
1                                             first_8    
2                                                   1    
3                                                   2    
4                                                   1    
5                                                   1    
6                                                   2    
7                                                   1    
8                                                   4    
9                                                   2    
10                                                  2    
11                                                  1    
12                                                  1    
13                                                  3    
14                                                  1    
15                                                  2    
16                                                  3    
17                                                  3    
18                                                  2    
19                                                  2    
20                                                  3    
21                                                  1    
22                                                  1    
23                                                  1    
24                                                  1    
25                                                  1    
26                                                  3    
27                                                  1    
28                                                  1    
29                                                  1    
30                                                  3    
31                                                  1    
32                                                  1    
33                                                  4    
34                                                  1    
35                                                  4    
36                                                  4    
37                                                  1    
38                                                  2    
39                                                  3    
40                                                  1    
41                                                  1    
42                                                  2    
43                                                  1    
44                                                  1    
45                                                  2    
46                                                  1    
47                                                  1    
48                                                  3    
49                                                  2    
50                                                  2    
51                                                  3    
52                                                  3    
53                                                  1    
54                                                  1    
55                                                  2    
56                                                  1    
57                                                  2    
58                                                  1    
59                                                  2    
60                                                  3    
61                                                  4    
62                                                  1    
63                                                  1    
64                                                  2    
65                                                  2    
66                                                  2    
67                                                  1    
68                                                  4    
69                                                  3    
70                                                  2    
71                                                  2    
72                                                  2    
73                                                  4    
74                                                  1    
75                                                  4    
76                                                  3    
77                                                  2    
78                                                  1    
79                                                  3    
80                                                  3    
81                                                  1    
82                                                  2    
83                                                  3    
84                                                  1    
85                                                  4    
86                                                  2    
87                                                  1    
88                                                  1    
89                                                  3    
90                                                  3    
91                                                  4    
92                                                  2    
93                                                  4    
94                                                  1    
95                                                  3    
96                                                  1    

   The Ford insomnia Response to Stress Test (FIRST).8  \
0   Before going on a vacation the next day (1=Not...    
1                                             first_9    
2                                                   2    
3                                                   1    
4                                                   1    
5                                                   1    
6                                                   2    
7                                                   1    
8                                                   3    
9                                                   1    
10                                                  4    
11                                                  2    
12                                                  1    
13                                                  3    
14                                                  1    
15                                                  3    
16                                                  1    
17                                                  4    
18                                                  1    
19                                                  1    
20                                                  1    
21                                                  1    
22                                                  2    
23                                                  3    
24                                                  3    
25                                                  2    
26                                                  1    
27                                                  1    
28                                                  1    
29                                                  1    
30                                                  2    
31                                                  4    
32                                                  3    
33                                                  2    
34                                                  1    
35                                                  2    
36                                                  4    
37                                                  2    
38                                                  2    
39                                                  1    
40                                                  1    
41                                                  2    
42                                                  3    
43                                                  1    
44                                                  3    
45                                                  3    
46                                                  1    
47                                                  1    
48                                                  2    
49                                                  4    
50                                                  2    
51                                                  1    
52                                                  1    
53                                                  2    
54                                                  1    
55                                                  2    
56                                                  1    
57                                                  1    
58                                                  1    
59                                                  3    
60                                                  2    
61                                                  1    
62                                                  4    
63                                                  1    
64                                                  3    
65                                                  2    
66                                                  1    
67                                                  1    
68                                                  2    
69                                                  1    
70                                                  1    
71                                                  1    
72                                                  1    
73                                                  4    
74                                                  1    
75                                                  4    
76                                                  3    
77                                                  2    
78                                                  2    
79                                                  1    
80                                                  4    
81                                                  1    
82                                                  1    
83                                                  3    
84                                                  2    
85                                                  2    
86                                                  4    
87                                                  3    
88                                                  3    
89                                                  3    
90                                                  1    
91                                                  4    
92                                                  1    
93                                                  4    
94                                                  4    
95                                                  4    
96                                                  4    

              State-Trait Anxiety Inventory (STAI-Y2)  \
0   I feel pleseant (1=Almost never\n2=Sometimes\n...   
1                                              stai_1   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  2   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  2   
33                                                  3   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  3   
40                                                  3   
41                                                  2   
42                                                  2   
43                                                  2   
44                                                  2   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  3   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  2   
59                                                  1   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  4   
68                                                  3   
69                                                  3   
70                                                  4   
71                                                  3   
72                                                  3   
73                                                  3   
74                                                  4   
75                                                  3   
76                                                  2   
77                                                  3   
78                                                  4   
79                                                  2   
80                                                  3   
81                                                  3   
82                                                  4   
83                                                  2   
84                                                  3   
85                                                  3   
86                                                  3   
87                                                  4   
88                                                  2   
89                                                  3   
90                                                  2   
91                                                  3   
92                                                  3   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  2   

            State-Trait Anxiety Inventory (STAI-Y2).1  \
0   I feel nervous and restless (1=Almost never\n2...   
1                                              stai_2   
2                                                   1   
3                                                   1   
4                                                   3   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  2   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  3   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  3   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  1   
66                                                  2   
67                                                  2   
68                                                  2   
69                                                  2   
70                                                  1   
71                                                  3   
72                                                  2   
73                                                  2   
74                                                  2   
75                                                  2   
76                                                  1   
77                                                  3   
78                                                  3   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  2   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  2   
91                                                  2   
92                                                  2   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  2   

            State-Trait Anxiety Inventory (STAI-Y2).2  \
0   I feel satisfied with myself (1=Almost never\n...   
1                                              stai_3   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   3   
7                                                   2   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  2   
33                                                  3   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  2   
42                                                  2   
43                                                  3   
44                                                  2   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  2   
50                                                  3   
51                                                  2   
52                                                  3   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  3   
57                                                  2   
58                                                  2   
59                                                  1   
60                                                  2   
61                                                  3   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  3   
67                                                  2   
68                                                  3   
69                                                  4   
70                                                  4   
71                                                  2   
72                                                  3   
73                                                  3   
74                                                  4   
75                                                  3   
76                                                  2   
77                                                  3   
78                                                  3   
79                                                  2   
80                                                  3   
81                                                  3   
82                                                  4   
83                                                  2   
84                                                  3   
85                                                  4   
86                                                  4   
87                                                  3   
88                                                  2   
89                                                  3   
90                                                  3   
91                                                  3   
92                                                  2   
93                                                  3   
94                                                  2   
95                                                  4   
96                                                  3   

            State-Trait Anxiety Inventory (STAI-Y2).3  \
0   I wish I could be as happy as others seem to b...   
1                                              stai_4   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   3   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  2   
40                                                  3   
41                                                  2   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  2   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  1   
60                                                  1   
61                                                  3   
62                                                  2   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  4   
69                                                  1   
70                                                  2   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  3   
77                                                  3   
78                                                  1   
79                                                  3   
80                                                  1   
81                                                  2   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  4   
92                                                  3   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  2   

            State-Trait Anxiety Inventory (STAI-Y2).4  \
0   I feel like a failure (1=Almost never\n2=Somet...   
1                                              stai_5   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  2   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  2   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  2   
79                                                  1   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  2   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  2   
93                                                  2   
94                                                  1   
95                                                  1   
96                                                  2   

            State-Trait Anxiety Inventory (STAI-Y2).5  \
0   I feel rested (1=Almost never\n2=Sometimes\n3=...   
1                                              stai_6   
2                                                   4   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   2   
10                                                  3   
11                                                  3   
12                                                  2   
13                                                  3   
14                                                  1   
15                                                  3   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  2   
24                                                  4   
25                                                  3   
26                                                  3   
27                                                  2   
28                                                  4   
29                                                  2   
30                                                  2   
31                                                  4   
32                                                  1   
33                                                  2   
34                                                  3   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  3   
41                                                  3   
42                                                  2   
43                                                  2   
44                                                  2   
45                                                  2   
46                                                  2   
47                                                  3   
48                                                  3   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  4   
56                                                  3   
57                                                  3   
58                                                  2   
59                                                  2   
60                                                  3   
61                                                  4   
62                                                  3   
63                                                  3   
64                                                  3   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  3   
69                                                  2   
70                                                  4   
71                                                  2   
72                                                  3   
73                                                  2   
74                                                  3   
75                                                  3   
76                                                  2   
77                                                  2   
78                                                  1   
79                                                  1   
80                                                  2   
81                                                  3   
82                                                  4   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  4   
88                                                  3   
89                                                  2   
90                                                  2   
91                                                  2   
92                                                  4   
93                                                  2   
94                                                  2   
95                                                  2   
96                                                  2   

            State-Trait Anxiety Inventory (STAI-Y2).6  \
0   I am calm, cool, and collected (1=Almost never...   
1                                              stai_7   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  3   
26                                                  1   
27                                                  2   
28                                                  3   
29                                                  3   
30                                                  1   
31                                                  2   
32                                                  2   
33                                                  3   
34                                                  2   
35                                                  2   
36                                                  4   
37                                                  2   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  3   
42                                                  1   
43                                                  2   
44                                                  2   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  3   
49                                                  1   
50                                                  2   
51                                                  3   
52                                                  3   
53                                                  2   
54                                                  1   
55                                                  3   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  3   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  2   
65                                                  2   
66                                                  3   
67                                                  3   
68                                                  4   
69                                                  2   
70                                                  4   
71                                                  4   
72                                                  3   
73                                                  4   
74                                                  3   
75                                                  3   
76                                                  2   
77                                                  2   
78                                                  3   
79                                                  2   
80                                                  3   
81                                                  4   
82                                                  4   
83                                                  2   
84                                                  3   
85                                                  4   
86                                                  3   
87                                                  4   
88                                                  4   
89                                                  4   
90                                                  3   
91                                                  3   
92                                                  4   
93                                                  3   
94                                                  2   
95                                                  4   
96                                                  2   

            State-Trait Anxiety Inventory (STAI-Y2).7  \
0   I feel that difficulties are piling up so that...   
1                                              stai_8   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  2   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  3   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  2   
68                                                  2   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  2   
78                                                  2   
79                                                  2   
80                                                  1   
81                                                  2   
82                                                  2   
83                                                  2   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  2   
91                                                  2   
92                                                  2   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  4   

            State-Trait Anxiety Inventory (STAI-Y2).8  \
0   I worry too much over something that really do...   
1                                              stai_9   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   4   
7                                                   2   
8                                                   3   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  3   
23                                                  2   
24                                                  3   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  4   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  2   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  4   
56                                                  2   
57                                                  3   
58                                                  1   
59                                                  3   
60                                                  1   
61                                                  3   
62                                                  3   
63                                                  4   
64                                                  3   
65                                                  2   
66                                                  3   
67                                                  1   
68                                                  1   
69                                                  3   
70                                                  2   
71                                                  2   
72                                                  2   
73                                                  3   
74                                                  2   
75                                                  2   
76                                                  2   
77                                                  3   
78                                                  2   
79                                                  3   
80                                                  2   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  3   
85                                                  1   
86                                                  1   
87                                                  4   
88                                                  3   
89                                                  3   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                  2   
94                                                  1   
95                                                  1   
96                                                  3   

            State-Trait Anxiety Inventory (STAI-Y2).9  \
0   I am happy (1=Almost never\n2=Sometimes\n3=Oft...   
1                                             stai_10   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  3   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  3   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  3   
67                                                  4   
68                                                  2   
69                                                  4   
70                                                  4   
71                                                  3   
72                                                  4   
73                                                  4   
74                                                  3   
75                                                  3   
76                                                  2   
77                                                  3   
78                                                  4   
79                                                  3   
80                                                  4   
81                                                  4   
82                                                  4   
83                                                  3   
84                                                  4   
85                                                  4   
86                                                  3   
87                                                  4   
88                                                  2   
89                                                  4   
90                                                  2   
91                                                  3   
92                                                  3   
93                                                  3   
94                                                  4   
95                                                  4   
96                                                  2   

           State-Trait Anxiety Inventory (STAI-Y2).10  \
0   I have disturbing thoughts (1=Almost never\n2=...   
1                                             stai_11   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   4   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  2   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  1   
66                                                  2   
67                                                  2   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  3   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  3   

           State-Trait Anxiety Inventory (STAI-Y2).11  \
0   I lack self-confidence (1=Almost never\n2=Some...   
1                                             stai_12   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  4   
36                                                  2   
37                                                  1   
38                                                  4   
39                                                  2   
40                                                  2   
41                                                  1   
42                                                  3   
43                                                  3   
44                                                  2   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  2   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  3   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  3   
68                                                  2   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  2   
73                                                  2   
74                                                  1   
75                                                  4   
76                                                  3   
77                                                  3   
78                                                  1   
79                                                  4   
80                                                  3   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  1   
87                                                  2   
88                                                  2   
89                                                  1   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  2   
95                                                  1   
96                                                  2   

           State-Trait Anxiety Inventory (STAI-Y2).12  \
0   I feel secure (1=Almost never\n2=Sometimes\n3=...   
1                                             stai_13   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  1   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  3   
23                                                  1   
24                                                  3   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  2   
33                                                  3   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  2   
42                                                  2   
43                                                  3   
44                                                  2   
45                                                  2   
46                                                  2   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  2   
53                                                  2   
54                                                  1   
55                                                  2   
56                                                  3   
57                                                  3   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  3   
68                                                  3   
69                                                  4   
70                                                  4   
71                                                  3   
72                                                  4   
73                                                  3   
74                                                  4   
75                                                  2   
76                                                  2   
77                                                  3   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  4   
82                                                  4   
83                                                  3   
84                                                  3   
85                                                  4   
86                                                  3   
87                                                  4   
88                                                  2   
89                                                  3   
90                                                  4   
91                                                  3   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  2   

           State-Trait Anxiety Inventory (STAI-Y2).13  \
0   I make decisions easily (1=Almost never\n2=Som...   
1                                             stai_14   
2                                                   2   
3                                                   1   
4                                                   2   
5                                                   3   
6                                                   2   
7                                                   2   
8                                                   3   
9                                                   1   
10                                                  3   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  3   
20                                                  3   
21                                                  1   
22                                                  3   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  2   
27                                                  2   
28                                                  4   
29                                                  3   
30                                                  3   
31                                                  2   
32                                                  2   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  4   
38                                                  3   
39                                                  3   
40                                                  3   
41                                                  4   
42                                                  2   
43                                                  2   
44                                                  3   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  3   
49                                                  2   
50                                                  3   
51                                                  3   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  4   
56                                                  3   
57                                                  3   
58                                                  1   
59                                                  3   
60                                                  3   
61                                                  3   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  1   
66                                                  2   
67                                                  2   
68                                                  3   
69                                                  1   
70                                                  3   
71                                                  3   
72                                                  2   
73                                                  2   
74                                                  2   
75                                                  2   
76                                                  4   
77                                                  2   
78                                                  3   
79                                                  1   
80                                                  1   
81                                                  3   
82                                                  3   
83                                                  2   
84                                                  2   
85                                                  4   
86                                                  3   
87                                                  3   
88                                                  4   
89                                                  2   
90                                                  2   
91                                                  2   
92                                                  3   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  3   

           State-Trait Anxiety Inventory (STAI-Y2).14  \
0   I feel inadequate (1=Almost never\n2=Sometimes...   
1                                             stai_15   
2                                                   1   
3                                                   1   
4                                                   3   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  2   
43                                                  3   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  2   
52                                                  1   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  3   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  2   
89                                                  1   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  2   
94                                                  1   
95                                                  1   
96                                                  2   

           State-Trait Anxiety Inventory (STAI-Y2).15  \
0   I am content (1=Almost never\n2=Sometimes\n3=O...   
1                                             stai_16   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  3   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  2   
39                                                  4   
40                                                  3   
41                                                  3   
42                                                  2   
43                                                  3   
44                                                  2   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  2   
59                                                  1   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  3   
66                                                  1   
67                                                  3   
68                                                  2   
69                                                  3   
70                                                  4   
71                                                  2   
72                                                  3   
73                                                  4   
74                                                  4   
75                                                  3   
76                                                  2   
77                                                  3   
78                                                  4   
79                                                  2   
80                                                  3   
81                                                  4   
82                                                  3   
83                                                  2   
84                                                  4   
85                                                  4   
86                                                  3   
87                                                  4   
88                                                  2   
89                                                  4   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                  3   
94                                                  4   
95                                                  4   
96                                                  4   

           State-Trait Anxiety Inventory (STAI-Y2).16  \
0   Some unimportant thought runs through my mind ...   
1                                             stai_17   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   2   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   2   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  2   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  2   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  2   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  3   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  3   
60                                                  2   
61                                                  3   
62                                                  3   
63                                                  3   
64                                                  2   
65                                                  2   
66                                                  2   
67                                                  2   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  2   
75                                                  3   
76                                                  2   
77                                                  2   
78                                                  2   
79                                                  3   
80                                                  1   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  3   
89                                                  3   
90                                                  1   
91                                                  2   
92                                                  3   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  2   

           State-Trait Anxiety Inventory (STAI-Y2).17  \
0   I take disappointments so keenly that I can't ...   
1                                             stai_18   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  2   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  3   
55                                                  3   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  2   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  2   
69                                                  3   
70                                                  1   
71                                                  3   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  3   
76                                                  2   
77                                                  2   
78                                                  3   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  4   
86                                                  1   
87                                                  2   
88                                                  3   
89                                                  3   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  2   

           State-Trait Anxiety Inventory (STAI-Y2).18  \
0   I am a steady person (1=Almost never\n2=Someti...   
1                                             stai_19   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   2   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  3   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  3   
42                                                  1   
43                                                  3   
44                                                  2   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  2   
52                                                  2   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  3   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  3   
68                                                  4   
69                                                  4   
70                                                  4   
71                                                  4   
72                                                  3   
73                                                  4   
74                                                  3   
75                                                  2   
76                                                  3   
77                                                  2   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  4   
82                                                  3   
83                                                  3   
84                                                  3   
85                                                  4   
86                                                  3   
87                                                  4   
88                                                  2   
89                                                  4   
90                                                  3   
91                                                  2   
92                                                  3   
93                                                  4   
94                                                  3   
95                                                  4   
96                                                  1   

           State-Trait Anxiety Inventory (STAI-Y2).19  \
0   I get in a state of tension or turmoil as I th...   
1                                             stai_20   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   2   
6                                                   3   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  4   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  3   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  3   
69                                                  3   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  3   
77                                                  3   
78                                                  4   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  3   
89                                                  4   
90                                                  1   
91                                                  3   
92                                                  2   
93                                                  2   
94                                                  1   
95                                                  1   
96                                                  3   

                 NEO Five-Factory Inventory (NEO-FFI)  \
0   I am not a worrier (0=Strongly Disagree\n1=Dis...   
1                                               neo_1   
2                                                   0   
3                                                   4   
4                                                   0   
5                                                   1   
6                                                   4   
7                                                   4   
8                                                   3   
9                                                   3   
10                                                  2   
11                                                  0   
12                                                  1   
13                                                  3   
14                                                  0   
15                                                  3   
16                                                  2   
17                                                  1   
18                                                  3   
19                                                  1   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  1   
24                                                  3   
25                                                  3   
26                                                  3   
27                                                  1   
28                                                  2   
29                                                  3   
30                                                  1   
31                                                  4   
32                                                  2   
33                                                  3   
34                                                  1   
35                                                  4   
36                                                  3   
37                                                  3   
38                                                  3   
39                                                  3   
40                                                  0   
41                                                  2   
42                                                  3   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  4   
53                                                  1   
54                                                  3   
55                                                  4   
56                                                  3   
57                                                  2   
58                                                  0   
59                                                  3   
60                                                  2   
61                                                  1   
62                                                  3   
63                                                  4   
64                                                  3   
65                                                  1   
66                                                  3   
67                                                  3   
68                                                  2   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  3   
73                                                  1   
74                                                  3   
75                                                  1   
76                                                  1   
77                                                  3   
78                                                  2   
79                                                  1   
80                                                  0   
81                                                  3   
82                                                  3   
83                                                  3   
84                                                  0   
85                                                  4   
86                                                  0   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  0   
92                                                  2   
93                                                  1   
94                                                  3   
95                                                  2   
96                                                  0   

               NEO Five-Factory Inventory (NEO-FFI).1  \
0   I like to have a lot of people around me(0=Str...   
1                                               neo_2   
2                                                   3   
3                                                   2   
4                                                   3   
5                                                   3   
6                                                   3   
7                                                   3   
8                                                   3   
9                                                   4   
10                                                  3   
11                                                  4   
12                                                  3   
13                                                  2   
14                                                  3   
15                                                  3   
16                                                  2   
17                                                  4   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  2   
24                                                  4   
25                                                  3   
26                                                  2   
27                                                  3   
28                                                  3   
29                                                  2   
30                                                  4   
31                                                  2   
32                                                  3   
33                                                  2   
34                                                  3   
35                                                  4   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  4   
42                                                  2   
43                                                  3   
44                                                  4   
45                                                  2   
46                                                  4   
47                                                  3   
48                                                  2   
49                                                  3   
50                                                  3   
51                                                  1   
52                                                  4   
53                                                  2   
54                                                  3   
55                                                  4   
56                                                  3   
57                                                  3   
58                                                  1   
59                                                  3   
60                                                  3   
61                                                  4   
62                                                  2   
63                                                  3   
64                                                  4   
65                                                  2   
66                                                  3   
67                                                  3   
68                                                  3   
69                                                  1   
70                                                  3   
71                                                  2   
72                                                  3   
73                                                  3   
74                                                  2   
75                                                  1   
76                                                  3   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  4   
81                                                  2   
82                                                  3   
83                                                  1   
84                                                  3   
85                                                  0   
86                                                  2   
87                                                  2   
88                                                  4   
89                                                  4   
90                                                  1   
91                                                  4   
92                                                  1   
93                                                  3   
94                                                  2   
95                                                  3   
96                                                  2   

               NEO Five-Factory Inventory (NEO-FFI).2  \
0   I don't like to waste my time daydreaming (0=S...   
1                                               neo_3   
2                                                   1   
3                                                   3   
4                                                   0   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   3   
9                                                   0   
10                                                  3   
11                                                  0   
12                                                  1   
13                                                  3   
14                                                  0   
15                                                  3   
16                                                  0   
17                                                  0   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  3   
23                                                  2   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  3   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  3   
34                                                  2   
35                                                  4   
36                                                  0   
37                                                  3   
38                                                  3   
39                                                  1   
40                                                  3   
41                                                  4   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  2   
47                                                  1   
48                                                  1   
49                                                  2   
50                                                  2   
51                                                  3   
52                                                  3   
53                                                  2   
54                                                  3   
55                                                  3   
56                                                  3   
57                                                  1   
58                                                  2   
59                                                  3   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  2   
71                                                  3   
72                                                  2   
73                                                  2   
74                                                  4   
75                                                  1   
76                                                  2   
77                                                  0   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  4   
82                                                  2   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  3   
91                                                  2   
92                                                  2   
93                                                  1   
94                                                  3   
95                                                  3   
96                                                  1   

               NEO Five-Factory Inventory (NEO-FFI).3  \
0   I try to be courteous to everyone I meet (0=St...   
1                                               neo_4   
2                                                   4   
3                                                   4   
4                                                   4   
5                                                   3   
6                                                   4   
7                                                   4   
8                                                   4   
9                                                   4   
10                                                  4   
11                                                  4   
12                                                  3   
13                                                  2   
14                                                  4   
15                                                  4   
16                                                  3   
17                                                  4   
18                                                  4   
19                                                  4   
20                                                  4   
21                                                  4   
22                                                  3   
23                                                  3   
24                                                  4   
25                                                  4   
26                                                  3   
27                                                  3   
28                                                  4   
29                                                  3   
30                                                  4   
31                                                  4   
32                                                  4   
33                                                  3   
34                                                  3   
35                                                  4   
36                                                  4   
37                                                  4   
38                                                  3   
39                                                  3   
40                                                  3   
41                                                  4   
42                                                  3   
43                                                  3   
44                                                  4   
45                                                  4   
46                                                  4   
47                                                  3   
48                                                  4   
49                                                  4   
50                                                  3   
51                                                  4   
52                                                  4   
53                                                  3   
54                                                  4   
55                                                  3   
56                                                  4   
57                                                  4   
58                                                  4   
59                                                  4   
60                                                  2   
61                                                  4   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  3   
66                                                  3   
67                                                  4   
68                                                  3   
69                                                  4   
70                                                  4   
71                                                  4   
72                                                  3   
73                                                  4   
74                                                  3   
75                                                  4   
76                                                  3   
77                                                  3   
78                                                  3   
79                                                  3   
80                                                  4   
81                                                  3   
82                                                  4   
83                                                  4   
84                                                  3   
85                                                  4   
86                                                  3   
87                                                  4   
88                                                  1   
89                                                  4   
90                                                  4   
91                                                  4   
92                                                  3   
93                                                  4   
94                                                  3   
95                                                  4   
96                                                  4   

               NEO Five-Factory Inventory (NEO-FFI).4  \
0   I keep my belongings neat and clean (0=Strongl...   
1                                               neo_5   
2                                                   3   
3                                                   4   
4                                                   4   
5                                                   3   
6                                                   4   
7                                                   2   
8                                                   1   
9                                                   2   
10                                                  3   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  1   
18                                                  3   
19                                                  2   
20                                                  2   
21                                                  2   
22                                                  1   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  3   
27                                                  4   
28                                                  2   
29                                                  3   
30                                                  2   
31                                                  1   
32                                                  4   
33                                                  4   
34                                                  1   
35                                                  2   
36                                                  3   
37                                                  2   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  1   
42                                                  4   
43                                                  0   
44                                                  4   
45                                                  4   
46                                                  2   
47                                                  1   
48                                                  1   
49                                                  4   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                  1   
54                                                  4   
55                                                  2   
56                                                  3   
57                                                  4   
58                                                  3   
59                                                  3   
60                                                  1   
61                                                  3   
62                                                  3   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  3   
67                                                  4   
68                                                  4   
69                                                  2   
70                                                  4   
71                                                  2   
72                                                  2   
73                                                  2   
74                                                  3   
75                                                  3   
76                                                  3   
77                                                  1   
78                                                  2   
79                                                  2   
80                                                  3   
81                                                  3   
82                                                  3   
83                                                  1   
84                                                  2   
85                                                  3   
86                                                  2   
87                                                  3   
88                                                  1   
89                                                  4   
90                                                  2   
91                                                  1   
92                                                  3   
93                                                  3   
94                                                  2   
95                                                  4   
96                                                  1   

               NEO Five-Factory Inventory (NEO-FFI).5  \
0   I often feel inferior to others (0=Strongly Di...   
1                                               neo_6   
2                                                   0   
3                                                   0   
4                                                   2   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  2   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  3   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  0   
31                                                  2   
32                                                  0   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  1   
45                                                  0   
46                                                  0   
47                                                  2   
48                                                  3   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  3   
56                                                  3   
57                                                  3   
58                                                  1   
59                                                  1   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  1   
67                                                  3   
68                                                  3   
69                                                  0   
70                                                  0   
71                                                  2   
72                                                  0   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  2   
77                                                  3   
78                                                  0   
79                                                  3   
80                                                  2   
81                                                  1   
82                                                  0   
83                                                  4   
84                                                  3   
85                                                  1   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  1   
90                                                  0   
91                                                  3   
92                                                  3   
93                                                  1   
94                                                  2   
95                                                  0   
96                                                  2   

               NEO Five-Factory Inventory (NEO-FFI).6  \
0   I laugh easily (0=Strongly Disagree\n1=Disagre...   
1                                               neo_7   
2                                                   2   
3                                                   3   
4                                                   3   
5                                                   2   
6                                                   3   
7                                                   4   
8                                                   2   
9                                                   4   
10                                                  3   
11                                                  1   
12                                                  3   
13                                                  3   
14                                                  3   
15                                                  3   
16                                                  3   
17                                                  4   
18                                                  3   
19                                                  3   
20                                                  3   
21                                                  4   
22                                                  3   
23                                                  4   
24                                                  4   
25                                                  4   
26                                                  3   
27                                                  4   
28                                                  4   
29                                                  2   
30                                                  4   
31                                                  4   
32                                                  2   
33                                                  4   
34                                                  3   
35                                                  2   
36                                                  3   
37                                                  4   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  4   
42                                                  4   
43                                                  3   
44                                                  4   
45                                                  2   
46                                                  4   
47                                                  3   
48                                                  4   
49                                                  4   
50                                                  3   
51                                                  4   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  4   
56                                                  4   
57                                                  3   
58                                                  4   
59                                                  4   
60                                                  3   
61                                                  4   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  4   
66                                                  3   
67                                                  4   
68                                                  4   
69                                                  3   
70                                                  4   
71                                                  3   
72                                                  3   
73                                                  4   
74                                                  2   
75                                                  4   
76                                                  4   
77                                                  1   
78                                                  3   
79                                                  4   
80                                                  3   
81                                                  3   
82                                                  3   
83                                                  1   
84                                                  4   
85                                                  3   
86                                                  2   
87                                                  4   
88                                                  4   
89                                                  4   
90                                                  3   
91                                                  4   
92                                                  4   
93                                                  4   
94                                                  4   
95                                                  4   
96                                                  3   

               NEO Five-Factory Inventory (NEO-FFI).7  \
0   Once I find the right way to do something, I s...   
1                                               neo_8   
2                                                   2   
3                                                   0   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   2   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  0   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  0   
31                                                  0   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  0   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  0   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  0   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  3   
68                                                  3   
69                                                  4   
70                                                  4   
71                                                  2   
72                                                  3   
73                                                  3   
74                                                  3   
75                                                  3   
76                                                  3   
77                                                  3   
78                                                  2   
79                                                  4   
80                                                  3   
81                                                  3   
82                                                  2   
83                                                  3   
84                                                  2   
85                                                  3   
86                                                  4   
87                                                  3   
88                                                  1   
89                                                  4   
90                                                  4   
91                                                  3   
92                                                  4   
93                                                  4   
94                                                  4   
95                                                  4   
96                                                  3   

               NEO Five-Factory Inventory (NEO-FFI).8  \
0   I often get into arguments with my family and ...   
1                                               neo_9   
2                                                   4   
3                                                   4   
4                                                   3   
5                                                   4   
6                                                   1   
7                                                   3   
8                                                   3   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  2   
13                                                  3   
14                                                  4   
15                                                  1   
16                                                  4   
17                                                  4   
18                                                  3   
19                                                  3   
20                                                  2   
21                                                  4   
22                                                  3   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  4   
27                                                  3   
28                                                  4   
29                                                  2   
30                                                  3   
31                                                  3   
32                                                  3   
33                                                  3   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  4   
38                                                  3   
39                                                  4   
40                                                  4   
41                                                  4   
42                                                  3   
43                                                  3   
44                                                  4   
45                                                  3   
46                                                  3   
47                                                  4   
48                                                  3   
49                                                  4   
50                                                  3   
51                                                  4   
52                                                  2   
53                                                  4   
54                                                  4   
55                                                  2   
56                                                  3   
57                                                  4   
58                                                  4   
59                                                  1   
60                                                  2   
61                                                  2   
62                                                  3   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  0   
70                                                  1   
71                                                  1   
72                                                  2   
73                                                  0   
74                                                  2   
75                                                  2   
76                                                  2   
77                                                  3   
78                                                  1   
79                                                  0   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  0   
86                                                  1   
87                                                  0   
88                                                  4   
89                                                  0   
90                                                  0   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  3   

               NEO Five-Factory Inventory (NEO-FFI).9  \
0   I'm pretty good about pacing myself so as to g...   
1                                              neo_10   
2                                                   4   
3                                                   4   
4                                                   3   
5                                                   3   
6                                                   3   
7                                                   4   
8                                                   4   
9                                                   3   
10                                                  2   
11                                                  2   
12                                                  3   
13                                                  4   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  3   
18                                                  3   
19                                                  3   
20                                                  3   
21                                                  2   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  2   
27                                                  3   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  3   
33                                                  3   
34                                                  2   
35                                                  1   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  1   
42                                                  2   
43                                                  0   
44                                                  3   
45                                                  1   
46                                                  3   
47                                                  1   
48                                                  3   
49                                                  4   
50                                                  2   
51                                                  2   
52                                                  2   
53                                                  3   
54                                                  4   
55                                                  0   
56                                                  3   
57                                                  2   
58                                                  0   
59                                                  4   
60                                                  1   
61                                                  2   
62                                                  4   
63                                                  4   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  3   
68                                                  1   
69                                                  3   
70                                                  3   
71                                                  4   
72                                                  0   
73                                                  3   
74                                                  3   
75                                                  2   
76                                                  4   
77                                                  3   
78                                                  4   
79                                                  3   
80                                                  1   
81                                                  3   
82                                                  3   
83                                                  0   
84                                                  2   
85                                                  0   
86                                                  3   
87                                                  3   
88                                                  1   
89                                                  4   
90                                                  2   
91                                                  3   
92                                                  1   
93                                                  0   
94                                                  3   
95                                                  4   
96                                                  0   

              NEO Five-Factory Inventory (NEO-FFI).10  \
0   When Im under a great deal of stress, sometime...   
1                                              neo_11   
2                                                   0   
3                                                   0   
4                                                   2   
5                                                   1   
6                                                   1   
7                                                   3   
8                                                   3   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  1   
14                                                  0   
15                                                  3   
16                                                  1   
17                                                  1   
18                                                  2   
19                                                  0   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  4   
26                                                  0   
27                                                  0   
28                                                  3   
29                                                  2   
30                                                  3   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  0   
43                                                  2   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  3   
48                                                  0   
49                                                  3   
50                                                  3   
51                                                  2   
52                                                  3   
53                                                  1   
54                                                  1   
55                                                  0   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  3   
61                                                  3   
62                                                  1   
63                                                  3   
64                                                  2   
65                                                  3   
66                                                  1   
67                                                  4   
68                                                  0   
69                                                  2   
70                                                  1   
71                                                  0   
72                                                  1   
73                                                  2   
74                                                  0   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  3   
79                                                  3   
80                                                  2   
81                                                  0   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  3   
88                                                  1   
89                                                  3   
90                                                  3   
91                                                  3   
92                                                  0   
93                                                  4   
94                                                  1   
95                                                  0   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).11  \
0   I don't consider myself especially 'light-hear...   
1                                              neo_12   
2                                                   1   
3                                                   3   
4                                                   2   
5                                                   3   
6                                                   3   
7                                                   4   
8                                                   4   
9                                                   0   
10                                                  3   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  4   
15                                                  3   
16                                                  2   
17                                                  4   
18                                                  1   
19                                                  2   
20                                                  3   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  1   
27                                                  4   
28                                                  4   
29                                                  2   
30                                                  4   
31                                                  3   
32                                                  2   
33                                                  1   
34                                                  3   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  3   
39                                                  1   
40                                                  3   
41                                                  4   
42                                                  3   
43                                                  3   
44                                                  2   
45                                                  3   
46                                                  2   
47                                                  3   
48                                                  2   
49                                                  3   
50                                                  2   
51                                                  3   
52                                                  3   
53                                                  1   
54                                                  3   
55                                                  4   
56                                                  1   
57                                                  3   
58                                                  4   
59                                                  4   
60                                                  3   
61                                                  0   
62                                                  3   
63                                                  2   
64                                                  4   
65                                                  1   
66                                                  2   
67                                                  2   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  2   
73                                                  3   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  3   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  2   
86                                                  3   
87                                                  1   
88                                                  0   
89                                                  2   
90                                                  2   
91                                                  0   
92                                                  1   
93                                                  2   
94                                                  3   
95                                                  0   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).12  \
0   I am intrigued by the patterns I find in art a...   
1                                              neo_13   
2                                                   2   
3                                                   3   
4                                                   3   
5                                                   1   
6                                                   3   
7                                                   3   
8                                                   3   
9                                                   2   
10                                                  3   
11                                                  1   
12                                                  2   
13                                                  1   
14                                                  2   
15                                                  3   
16                                                  0   
17                                                  0   
18                                                  3   
19                                                  2   
20                                                  2   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  2   
27                                                  2   
28                                                  0   
29                                                  4   
30                                                  2   
31                                                  2   
32                                                  2   
33                                                  1   
34                                                  1   
35                                                  3   
36                                                  3   
37                                                  1   
38                                                  4   
39                                                  3   
40                                                  2   
41                                                  3   
42                                                  2   
43                                                  3   
44                                                  0   
45                                                  4   
46                                                  4   
47                                                  3   
48                                                  3   
49                                                  4   
50                                                  2   
51                                                  4   
52                                                  3   
53                                                  3   
54                                                  0   
55                                                  1   
56                                                  3   
57                                                  1   
58                                                  4   
59                                                  4   
60                                                  3   
61                                                  2   
62                                                  2   
63                                                  0   
64                                                  3   
65                                                  3   
66                                                  1   
67                                                  1   
68                                                  4   
69                                                  1   
70                                                  0   
71                                                  4   
72                                                  3   
73                                                  3   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  3   
78                                                  4   
79                                                  3   
80                                                  2   
81                                                  3   
82                                                  3   
83                                                  2   
84                                                  2   
85                                                  0   
86                                                  4   
87                                                  4   
88                                                  3   
89                                                  0   
90                                                  1   
91                                                  3   
92                                                  4   
93                                                  3   
94                                                  0   
95                                                  4   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).13  \
0   Some people think I'm selfish and egotistical ...   
1                                              neo_14   
2                                                   3   
3                                                   4   
4                                                   2   
5                                                   4   
6                                                   2   
7                                                   4   
8                                                   4   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  3   
13                                                  3   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  3   
18                                                  3   
19                                                  3   
20                                                  2   
21                                                  2   
22                                                  3   
23                                                  3   
24                                                  4   
25                                                  4   
26                                                  3   
27                                                  4   
28                                                  4   
29                                                  4   
30                                                  1   
31                                                  1   
32                                                  2   
33                                                  2   
34                                                  3   
35                                                  4   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  4   
40                                                  3   
41                                                  4   
42                                                  4   
43                                                  4   
44                                                  4   
45                                                  2   
46                                                  4   
47                                                  3   
48                                                  4   
49                                                  4   
50                                                  2   
51                                                  4   
52                                                  3   
53                                                  3   
54                                                  4   
55                                                  1   
56                                                  3   
57                                                  4   
58                                                  1   
59                                                  3   
60                                                  1   
61                                                  4   
62                                                  3   
63                                                  3   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  3   
69                                                  1   
70                                                  0   
71                                                  2   
72                                                  3   
73                                                  0   
74                                                  1   
75                                                  0   
76                                                  3   
77                                                  3   
78                                                  0   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  0   
83                                                  2   
84                                                  1   
85                                                  0   
86                                                  1   
87                                                  1   
88                                                  3   
89                                                  0   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).14  \
0   I am not a very methodical person (0=Strongly ...   
1                                              neo_15   
2                                                   3   
3                                                   3   
4                                                   2   
5                                                   2   
6                                                   4   
7                                                   3   
8                                                   1   
9                                                   0   
10                                                  2   
11                                                  3   
12                                                  2   
13                                                  3   
14                                                  4   
15                                                  4   
16                                                  1   
17                                                  4   
18                                                  3   
19                                                  1   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  3   
27                                                  2   
28                                                  3   
29                                                  3   
30                                                  3   
31                                                  4   
32                                                  3   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  3   
37                                                  1   
38                                                  2   
39                                                  2   
40                                                  3   
41                                                  2   
42                                                  2   
43                                                  2   
44                                                  4   
45                                                  3   
46                                                  3   
47                                                  1   
48                                                  1   
49                                                  2   
50                                                  2   
51                                                  3   
52                                                  3   
53                                                  0   
54                                                  3   
55                                                  3   
56                                                  2   
57                                                  3   
58                                                  3   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  4   
63                                                  3   
64                                                  0   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  0   
70                                                  2   
71                                                  1   
72                                                  3   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  3   
86                                                  1   
87                                                  2   
88                                                  0   
89                                                  2   
90                                                  3   
91                                                  1   
92                                                  1   
93                                                  3   
94                                                  2   
95                                                  2   
96                                                  3   

              NEO Five-Factory Inventory (NEO-FFI).15  \
0   I rarely feel lonely or blue (0=Strongly Disag...   
1                                              neo_16   
2                                                   4   
3                                                   1   
4                                                   0   
5                                                   0   
6                                                   3   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  3   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  4   
18                                                  2   
19                                                  3   
20                                                  1   
21                                                  0   
22                                                  3   
23                                                  1   
24                                                  2   
25                                                  3   
26                                                  1   
27                                                  0   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  4   
32                                                  0   
33                                                  2   
34                                                  3   
35                                                  2   
36                                                  2   
37                                                  3   
38                                                  3   
39                                                  1   
40                                                  1   
41                                                  4   
42                                                  0   
43                                                  2   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                  1   
48                                                  3   
49                                                  0   
50                                                  2   
51                                                  0   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  3   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  0   
65                                                  2   
66                                                  3   
67                                                  1   
68                                                  2   
69                                                  4   
70                                                  0   
71                                                  2   
72                                                  4   
73                                                  3   
74                                                  3   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  3   
79                                                  1   
80                                                  2   
81                                                  2   
82                                                  3   
83                                                  3   
84                                                  1   
85                                                  4   
86                                                  3   
87                                                  2   
88                                                  2   
89                                                  1   
90                                                  3   
91                                                  0   
92                                                  3   
93                                                  1   
94                                                  0   
95                                                  4   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).16  \
0   I really enjoy talking to people  (0=Strongly ...   
1                                              neo_17   
2                                                   4   
3                                                   4   
4                                                   3   
5                                                   4   
6                                                   3   
7                                                   4   
8                                                   3   
9                                                   4   
10                                                  4   
11                                                  4   
12                                                  2   
13                                                  2   
14                                                  3   
15                                                  3   
16                                                  4   
17                                                  4   
18                                                  3   
19                                                  4   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  3   
24                                                  4   
25                                                  4   
26                                                  3   
27                                                  4   
28                                                  4   
29                                                  3   
30                                                  4   
31                                                  3   
32                                                  4   
33                                                  2   
34                                                  3   
35                                                  4   
36                                                  1   
37                                                  4   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  4   
42                                                  3   
43                                                  4   
44                                                  4   
45                                                  4   
46                                                  4   
47                                                  4   
48                                                  3   
49                                                  3   
50                                                  3   
51                                                  2   
52                                                  4   
53                                                  4   
54                                                  4   
55                                                  3   
56                                                  4   
57                                                  4   
58                                                  2   
59                                                  4   
60                                                  3   
61                                                  4   
62                                                  3   
63                                                  3   
64                                                  4   
65                                                  3   
66                                                  3   
67                                                  2   
68                                                  3   
69                                                  2   
70                                                  3   
71                                                  2   
72                                                  3   
73                                                  4   
74                                                  4   
75                                                  2   
76                                                  2   
77                                                  2   
78                                                  4   
79                                                  3   
80                                                  4   
81                                                  2   
82                                                  3   
83                                                  3   
84                                                  3   
85                                                  2   
86                                                  2   
87                                                  3   
88                                                  4   
89                                                  4   
90                                                  3   
91                                                  4   
92                                                  1   
93                                                  4   
94                                                  2   
95                                                  3   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).17  \
0   I believe letting students hear controversial ...   
1                                              neo_18   
2                                                   4   
3                                                   3   
4                                                   1   
5                                                   3   
6                                                   3   
7                                                   3   
8                                                   4   
9                                                   3   
10                                                  4   
11                                                  4   
12                                                  2   
13                                                  2   
14                                                  4   
15                                                  4   
16                                                  4   
17                                                  4   
18                                                  3   
19                                                  3   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  4   
24                                                  3   
25                                                  4   
26                                                  4   
27                                                  4   
28                                                  2   
29                                                  2   
30                                                  3   
31                                                  4   
32                                                  4   
33                                                  2   
34                                                  3   
35                                                  2   
36                                                  3   
37                                                  4   
38                                                  4   
39                                                  3   
40                                                  4   
41                                                  2   
42                                                  1   
43                                                  4   
44                                                  4   
45                                                  3   
46                                                  4   
47                                                  1   
48                                                  4   
49                                                  4   
50                                                  3   
51                                                  4   
52                                                  3   
53                                                  3   
54                                                  4   
55                                                  3   
56                                                  2   
57                                                  3   
58                                                  4   
59                                                  2   
60                                                  3   
61                                                  3   
62                                                  4   
63                                                  4   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  1   
70                                                  3   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  0   
79                                                  1   
80                                                  0   
81                                                  0   
82                                                  1   
83                                                  0   
84                                                  2   
85                                                  1   
86                                                  0   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).18  \
0   I would rather cooperate with others than comp...   
1                                              neo_19   
2                                                   1   
3                                                   3   
4                                                   3   
5                                                   3   
6                                                   2   
7                                                   4   
8                                                   4   
9                                                   4   
10                                                  3   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  3   
15                                                  3   
16                                                  1   
17                                                  3   
18                                                  3   
19                                                  4   
20                                                  3   
21                                                  2   
22                                                  2   
23                                                  3   
24                                                  4   
25                                                  4   
26                                                  4   
27                                                  4   
28                                                  3   
29                                                  3   
30                                                  3   
31                                                  4   
32                                                  1   
33                                                  3   
34                                                  3   
35                                                  2   
36                                                  3   
37                                                  1   
38                                                  3   
39                                                  1   
40                                                  1   
41                                                  4   
42                                                  2   
43                                                  3   
44                                                  4   
45                                                  3   
46                                                  4   
47                                                  3   
48                                                  3   
49                                                  1   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  3   
56                                                  3   
57                                                  4   
58                                                  1   
59                                                  4   
60                                                  4   
61                                                  4   
62                                                  3   
63                                                  2   
64                                                  2   
65                                                  2   
66                                                  3   
67                                                  4   
68                                                  3   
69                                                  1   
70                                                  4   
71                                                  2   
72                                                  2   
73                                                  4   
74                                                  2   
75                                                  4   
76                                                  1   
77                                                  1   
78                                                  4   
79                                                  2   
80                                                  3   
81                                                  3   
82                                                  3   
83                                                  4   
84                                                  3   
85                                                  4   
86                                                  3   
87                                                  2   
88                                                  1   
89                                                  3   
90                                                  4   
91                                                  4   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  3   

              NEO Five-Factory Inventory (NEO-FFI).19  \
0    I try to perform all the tasks assigned to me...   
1                                              neo_20   
2                                                   4   
3                                                   3   
4                                                   3   
5                                                   3   
6                                                   3   
7                                                   3   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  4   
15                                                  3   
16                                                  2   
17                                                  3   
18                                                  3   
19                                                  3   
20                                                  3   
21                                                  3   
22                                                  3   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  3   
27                                                  4   
28                                                  3   
29                                                  3   
30                                                  3   
31                                                  3   
32                                                  3   
33                                                  3   
34                                                  3   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  3   
39                                                  3   
40                                                  3   
41                                                  3   
42                                                  3   
43                                                  2   
44                                                  4   
45                                                  3   
46                                                  4   
47                                                  2   
48                                                  4   
49                                                  3   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                  2   
54                                                  4   
55                                                  3   
56                                                  3   
57                                                  3   
58                                                  3   
59                                                  3   
60                                                  3   
61                                                  3   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  2   
67                                                  4   
68                                                  4   
69                                                  3   
70                                                  3   
71                                                  3   
72                                                  2   
73                                                  4   
74                                                  2   
75                                                  3   
76                                                  3   
77                                                  1   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  3   
82                                                  3   
83                                                  1   
84                                                  3   
85                                                  3   
86                                                  2   
87                                                  4   
88                                                  3   
89                                                  4   
90                                                  2   
91                                                  2   
92                                                  4   
93                                                  1   
94                                                  3   
95                                                  4   
96                                                  3   

              NEO Five-Factory Inventory (NEO-FFI).20  \
0   I often feel tense and jittery(0=Strongly Disa...   
1                                              neo_21   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   3   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  2   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  2   
30                                                  0   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  3   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  0   
42                                                  3   
43                                                  1   
44                                                  0   
45                                                  1   
46                                                  0   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  0   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  3   
70                                                  0   
71                                                  3   
72                                                  1   
73                                                  1   
74                                                  0   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  3   
79                                                  2   
80                                                  1   
81                                                  0   
82                                                  1   
83                                                  3   
84                                                  0   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  0   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  3   
94                                                  1   
95                                                  0   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).21  \
0   I like to be where the action is (0=Strongly D...   
1                                              neo_22   
2                                                   3   
3                                                   2   
4                                                   2   
5                                                   4   
6                                                   2   
7                                                   2   
8                                                   1   
9                                                   4   
10                                                  3   
11                                                  2   
12                                                  4   
13                                                  3   
14                                                  3   
15                                                  3   
16                                                  3   
17                                                  2   
18                                                  2   
19                                                  3   
20                                                  3   
21                                                  2   
22                                                  3   
23                                                  1   
24                                                  1   
25                                                  3   
26                                                  2   
27                                                  3   
28                                                  3   
29                                                  3   
30                                                  3   
31                                                  2   
32                                                  3   
33                                                  2   
34                                                  2   
35                                                  4   
36                                                  3   
37                                                  4   
38                                                  3   
39                                                  4   
40                                                  2   
41                                                  4   
42                                                  3   
43                                                  4   
44                                                  3   
45                                                  3   
46                                                  3   
47                                                  3   
48                                                  2   
49                                                  3   
50                                                  1   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  4   
56                                                  3   
57                                                  2   
58                                                  4   
59                                                  3   
60                                                  3   
61                                                  3   
62                                                  3   
63                                                  2   
64                                                  4   
65                                                  1   
66                                                  3   
67                                                  1   
68                                                  3   
69                                                  3   
70                                                  3   
71                                                  3   
72                                                  2   
73                                                  1   
74                                                  3   
75                                                  3   
76                                                  4   
77                                                  3   
78                                                  3   
79                                                  2   
80                                                  3   
81                                                  3   
82                                                  1   
83                                                  1   
84                                                  3   
85                                                  0   
86                                                  3   
87                                                  4   
88                                                  4   
89                                                  4   
90                                                  2   
91                                                  4   
92                                                  3   
93                                                  3   
94                                                  2   
95                                                  2   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).22  \
0   Poetry has little or no effect on me (0=Strong...   
1                                              neo_23   
2                                                   2   
3                                                   2   
4                                                   1   
5                                                   3   
6                                                   1   
7                                                   3   
8                                                   1   
9                                                   0   
10                                                  3   
11                                                  2   
12                                                  1   
13                                                  3   
14                                                  0   
15                                                  3   
16                                                  4   
17                                                  0   
18                                                  3   
19                                                  3   
20                                                  0   
21                                                  3   
22                                                  2   
23                                                  2   
24                                                  3   
25                                                  2   
26                                                  2   
27                                                  0   
28                                                  0   
29                                                  3   
30                                                  3   
31                                                  3   
32                                                  3   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  4   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  1   
41                                                  0   
42                                                  0   
43                                                  3   
44                                                  3   
45                                                  1   
46                                                  3   
47                                                  1   
48                                                  3   
49                                                  2   
50                                                  1   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  0   
55                                                  1   
56                                                  2   
57                                                  0   
58                                                  2   
59                                                  2   
60                                                  0   
61                                                  0   
62                                                  3   
63                                                  0   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  4   
68                                                  0   
69                                                  4   
70                                                  2   
71                                                  2   
72                                                  1   
73                                                  0   
74                                                  3   
75                                                  1   
76                                                  1   
77                                                  3   
78                                                  0   
79                                                  1   
80                                                  4   
81                                                  3   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  4   
86                                                  2   
87                                                  2   
88                                                  3   
89                                                  3   
90                                                  3   
91                                                  3   
92                                                  4   
93                                                  3   
94                                                  4   
95                                                  1   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).23  \
0   I tend to be cynical and skeptical of others' ...   
1                                              neo_24   
2                                                   3   
3                                                   4   
4                                                   3   
5                                                   3   
6                                                   1   
7                                                   3   
8                                                   0   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  2   
13                                                  3   
14                                                  2   
15                                                  1   
16                                                  3   
17                                                  1   
18                                                  3   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  1   
23                                                  2   
24                                                  4   
25                                                  0   
26                                                  3   
27                                                  2   
28                                                  3   
29                                                  3   
30                                                  2   
31                                                  1   
32                                                  2   
33                                                  2   
34                                                  3   
35                                                  3   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  2   
42                                                  2   
43                                                  1   
44                                                  4   
45                                                  1   
46                                                  3   
47                                                  1   
48                                                  3   
49                                                  3   
50                                                  2   
51                                                  4   
52                                                  2   
53                                                  3   
54                                                  3   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  3   
65                                                  1   
66                                                  2   
67                                                  0   
68                                                  3   
69                                                  3   
70                                                  3   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  3   
77                                                  3   
78                                                  1   
79                                                  3   
80                                                  1   
81                                                  2   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  3   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  4   
91                                                  3   
92                                                  3   
93                                                  3   
94                                                  1   
95                                                  0   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).24  \
0   I have a clear set of goals and work toward th...   
1                                              neo_25   
2                                                   4   
3                                                   3   
4                                                   2   
5                                                   2   
6                                                   3   
7                                                   3   
8                                                   1   
9                                                   3   
10                                                  2   
11                                                  3   
12                                                  3   
13                                                  3   
14                                                  4   
15                                                  2   
16                                                  1   
17                                                  4   
18                                                  3   
19                                                  2   
20                                                  2   
21                                                  3   
22                                                  1   
23                                                  2   
24                                                  4   
25                                                  3   
26                                                  3   
27                                                  3   
28                                                  4   
29                                                  3   
30                                                  3   
31                                                  3   
32                                                  3   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  2   
38                                                  3   
39                                                  2   
40                                                  3   
41                                                  2   
42                                                  3   
43                                                  2   
44                                                  4   
45                                                  3   
46                                                  3   
47                                                  3   
48                                                  3   
49                                                  3   
50                                                  3   
51                                                  3   
52                                                  2   
53                                                  3   
54                                                  3   
55                                                  3   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  3   
60                                                  1   
61                                                  1   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  3   
67                                                  3   
68                                                  4   
69                                                  4   
70                                                  4   
71                                                  4   
72                                                  1   
73                                                  2   
74                                                  3   
75                                                  2   
76                                                  4   
77                                                  1   
78                                                  2   
79                                                  2   
80                                                  3   
81                                                  3   
82                                                  3   
83                                                  1   
84                                                  4   
85                                                  0   
86                                                  3   
87                                                  2   
88                                                  1   
89                                                  4   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  1   
94                                                  3   
95                                                  4   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).25  \
0   Sometimes I feel completely worthless (0=Stron...   
1                                              neo_26   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  1   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  2   
23                                                  0   
24                                                  1   
25                                                  3   
26                                                  1   
27                                                  0   
28                                                  1   
29                                                  1   
30                                                  0   
31                                                  3   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  3   
38                                                  3   
39                                                  1   
40                                                  1   
41                                                  0   
42                                                  0   
43                                                  3   
44                                                  0   
45                                                  1   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  0   
59                                                  3   
60                                                  3   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  3   
68                                                  1   
69                                                  0   
70                                                  0   
71                                                  2   
72                                                  0   
73                                                  2   
74                                                  0   
75                                                  1   
76                                                  2   
77                                                  3   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  0   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  3   
88                                                  2   
89                                                  0   
90                                                  0   
91                                                  1   
92                                                  2   
93                                                  3   
94                                                  1   
95                                                  0   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).26  \
0   I usually prefer to do things alone (0=Strongl...   
1                                              neo_27   
2                                                   3   
3                                                   3   
4                                                   2   
5                                                   1   
6                                                   2   
7                                                   2   
8                                                   1   
9                                                   3   
10                                                  3   
11                                                  3   
12                                                  2   
13                                                  2   
14                                                  2   
15                                                  3   
16                                                  3   
17                                                  0   
18                                                  2   
19                                                  2   
20                                                  1   
21                                                  3   
22                                                  3   
23                                                  2   
24                                                  3   
25                                                  1   
26                                                  3   
27                                                  3   
28                                                  3   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  3   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  1   
40                                                  2   
41                                                  4   
42                                                  1   
43                                                  3   
44                                                  4   
45                                                  3   
46                                                  3   
47                                                  2   
48                                                  2   
49                                                  2   
50                                                  2   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  4   
55                                                  3   
56                                                  3   
57                                                  1   
58                                                  1   
59                                                  3   
60                                                  4   
61                                                  4   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  3   
68                                                  1   
69                                                  2   
70                                                  3   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  0   
75                                                  2   
76                                                  4   
77                                                  3   
78                                                  2   
79                                                  4   
80                                                  0   
81                                                  3   
82                                                  3   
83                                                  3   
84                                                  2   
85                                                  4   
86                                                  3   
87                                                  4   
88                                                  3   
89                                                  4   
90                                                  2   
91                                                  1   
92                                                  4   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  0   

              NEO Five-Factory Inventory (NEO-FFI).27  \
0   often try new and foreign foods (0=Strongly Di...   
1                                              neo_28   
2                                                   4   
3                                                   2   
4                                                   3   
5                                                   3   
6                                                   4   
7                                                   4   
8                                                   3   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  1   
13                                                  1   
14                                                  3   
15                                                  3   
16                                                  3   
17                                                  0   
18                                                  3   
19                                                  2   
20                                                  4   
21                                                  4   
22                                                  2   
23                                                  4   
24                                                  3   
25                                                  4   
26                                                  3   
27                                                  2   
28                                                  3   
29                                                  4   
30                                                  3   
31                                                  2   
32                                                  2   
33                                                  2   
34                                                  0   
35                                                  3   
36                                                  3   
37                                                  4   
38                                                  3   
39                                                  3   
40                                                  1   
41                                                  4   
42                                                  3   
43                                                  1   
44                                                  4   
45                                                  4   
46                                                  3   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  1   
53                                                  3   
54                                                  4   
55                                                  3   
56                                                  3   
57                                                  3   
58                                                  3   
59                                                  4   
60                                                  4   
61                                                  4   
62                                                  3   
63                                                  3   
64                                                  3   
65                                                  3   
66                                                  2   
67                                                  1   
68                                                  3   
69                                                  3   
70                                                  4   
71                                                  4   
72                                                  3   
73                                                  3   
74                                                  2   
75                                                  3   
76                                                  3   
77                                                  3   
78                                                  4   
79                                                  0   
80                                                  4   
81                                                  3   
82                                                  4   
83                                                  3   
84                                                  3   
85                                                  4   
86                                                  1   
87                                                  4   
88                                                  4   
89                                                  4   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                  3   
94                                                  2   
95                                                  3   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).28  \
0   I believe that most people will take advantage...   
1                                              neo_29   
2                                                   4   
3                                                   3   
4                                                   3   
5                                                   3   
6                                                   2   
7                                                   3   
8                                                   4   
9                                                   4   
10                                                  2   
11                                                  3   
12                                                  1   
13                                                  3   
14                                                  3   
15                                                  1   
16                                                  1   
17                                                  3   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  3   
22                                                  2   
23                                                  2   
24                                                  3   
25                                                  1   
26                                                  2   
27                                                  3   
28                                                  3   
29                                                  3   
30                                                  1   
31                                                  1   
32                                                  2   
33                                                  0   
34                                                  2   
35                                                  2   
36                                                  3   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  2   
41                                                  4   
42                                                  1   
43                                                  1   
44                                                  3   
45                                                  3   
46                                                  4   
47                                                  2   
48                                                  4   
49                                                  2   
50                                                  3   
51                                                  4   
52                                                  2   
53                                                  3   
54                                                  2   
55                                                  3   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  3   
61                                                  3   
62                                                  1   
63                                                  3   
64                                                  3   
65                                                  3   
66                                                  1   
67                                                  0   
68                                                  1   
69                                                  1   
70                                                  3   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  2   
75                                                  1   
76                                                  3   
77                                                  2   
78                                                  2   
79                                                  4   
80                                                  1   
81                                                  2   
82                                                  3   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  3   
89                                                  1   
90                                                  2   
91                                                  3   
92                                                  3   
93                                                  3   
94                                                  2   
95                                                  0   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).29  \
0   I waste a lot of time before settling down to ...   
1                                              neo_30   
2                                                   3   
3                                                   4   
4                                                   1   
5                                                   3   
6                                                   0   
7                                                   4   
8                                                   1   
9                                                   2   
10                                                  1   
11                                                  1   
12                                                  3   
13                                                  3   
14                                                  3   
15                                                  1   
16                                                  3   
17                                                  1   
18                                                  3   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  3   
24                                                  3   
25                                                  1   
26                                                  2   
27                                                  3   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  0   
32                                                  2   
33                                                  2   
34                                                  1   
35                                                  0   
36                                                  1   
37                                                  1   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  3   
47                                                  0   
48                                                  1   
49                                                  4   
50                                                  1   
51                                                  2   
52                                                  1   
53                                                  3   
54                                                  1   
55                                                  0   
56                                                  1   
57                                                  3   
58                                                  0   
59                                                  1   
60                                                  0   
61                                                  2   
62                                                  4   
63                                                  3   
64                                                  2   
65                                                  4   
66                                                  3   
67                                                  2   
68                                                  3   
69                                                  1   
70                                                  4   
71                                                  2   
72                                                  4   
73                                                  1   
74                                                  3   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  1   
79                                                  4   
80                                                  3   
81                                                  1   
82                                                  1   
83                                                  4   
84                                                  3   
85                                                  4   
86                                                  2   
87                                                  3   
88                                                  3   
89                                                  1   
90                                                  2   
91                                                  3   
92                                                  4   
93                                                  4   
94                                                  3   
95                                                  0   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).30  \
0   I rarely feel fearful or anxious (0=Strongly D...   
1                                              neo_31   
2                                                   0   
3                                                   1   
4                                                   1   
5                                                   0   
6                                                   3   
7                                                   1   
8                                                   3   
9                                                   0   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  3   
14                                                  0   
15                                                  1   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  0   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  1   
26                                                  1   
27                                                  0   
28                                                  1   
29                                                  3   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  1   
41                                                  0   
42                                                  3   
43                                                  2   
44                                                  0   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  0   
50                                                  3   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  1   
55                                                  3   
56                                                  2   
57                                                  1   
58                                                  0   
59                                                  3   
60                                                  1   
61                                                  3   
62                                                  1   
63                                                  3   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  3   
68                                                  1   
69                                                  2   
70                                                  4   
71                                                  1   
72                                                  3   
73                                                  1   
74                                                  3   
75                                                  1   
76                                                  2   
77                                                  3   
78                                                  3   
79                                                  2   
80                                                  1   
81                                                  4   
82                                                  3   
83                                                  3   
84                                                  3   
85                                                  2   
86                                                  3   
87                                                  3   
88                                                  3   
89                                                  0   
90                                                  2   
91                                                  1   
92                                                  3   
93                                                  0   
94                                                  2   
95                                                  3   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).31  \
0   I often feel as if I'm bursting with energy (0...   
1                                              neo_32   
2                                                   3   
3                                                   1   
4                                                   2   
5                                                   4   
6                                                   2   
7                                                   2   
8                                                   3   
9                                                   4   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  3   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  1   
26                                                  2   
27                                                  3   
28                                                  3   
29                                                  2   
30                                                  3   
31                                                  1   
32                                                  2   
33                                                  2   
34                                                  3   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  3   
43                                                  2   
44                                                  2   
45                                                  1   
46                                                  3   
47                                                  1   
48                                                  0   
49                                                  2   
50                                                  2   
51                                                  2   
52                                                  0   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  2   
59                                                  4   
60                                                  3   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  2   
69                                                  2   
70                                                  3   
71                                                  1   
72                                                  2   
73                                                  1   
74                                                  2   
75                                                  2   
76                                                  0   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  2   
82                                                  3   
83                                                  1   
84                                                  1   
85                                                  0   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  3   
90                                                  0   
91                                                  3   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  2   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).32  \
0   I seldom notice the moods or feelings that dif...   
1                                              neo_33   
2                                                   2   
3                                                   1   
4                                                   2   
5                                                   0   
6                                                   3   
7                                                   1   
8                                                   4   
9                                                   2   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  1   
14                                                  3   
15                                                  1   
16                                                  3   
17                                                  3   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  0   
25                                                  1   
26                                                  3   
27                                                  2   
28                                                  0   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  2   
35                                                  0   
36                                                  1   
37                                                  0   
38                                                  3   
39                                                  2   
40                                                  1   
41                                                  3   
42                                                  2   
43                                                  1   
44                                                  2   
45                                                  0   
46                                                  1   
47                                                  3   
48                                                  3   
49                                                  3   
50                                                  2   
51                                                  0   
52                                                  0   
53                                                  1   
54                                                  3   
55                                                  1   
56                                                  2   
57                                                  3   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  3   
62                                                  2   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  2   
70                                                  3   
71                                                  3   
72                                                  1   
73                                                  1   
74                                                  3   
75                                                  3   
76                                                  1   
77                                                  1   
78                                                  0   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  3   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  3   
87                                                  1   
88                                                  0   
89                                                  3   
90                                                  2   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  2   
95                                                  0   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).33  \
0   Most people I know like me (0=Strongly Disagre...   
1                                              neo_34   
2                                                   4   
3                                                   3   
4                                                   2   
5                                                   3   
6                                                   3   
7                                                   3   
8                                                   3   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  3   
13                                                  3   
14                                                  4   
15                                                  4   
16                                                  3   
17                                                  3   
18                                                  3   
19                                                  3   
20                                                  3   
21                                                  3   
22                                                  3   
23                                                  4   
24                                                  3   
25                                                  3   
26                                                  2   
27                                                  3   
28                                                  3   
29                                                  3   
30                                                  3   
31                                                  3   
32                                                  3   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  3   
37                                                  4   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  3   
42                                                  3   
43                                                  3   
44                                                  4   
45                                                  4   
46                                                  4   
47                                                  3   
48                                                  4   
49                                                  3   
50                                                  3   
51                                                  3   
52                                                  4   
53                                                  3   
54                                                  4   
55                                                  3   
56                                                  2   
57                                                  1   
58                                                  3   
59                                                  4   
60                                                  4   
61                                                  3   
62                                                  3   
63                                                  3   
64                                                  4   
65                                                  3   
66                                                  3   
67                                                  3   
68                                                  2   
69                                                  3   
70                                                  4   
71                                                  3   
72                                                  3   
73                                                  3   
74                                                  3   
75                                                  2   
76                                                  3   
77                                                  2   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  3   
82                                                  4   
83                                                  3   
84                                                  3   
85                                                  4   
86                                                  3   
87                                                  3   
88                                                  3   
89                                                  4   
90                                                  3   
91                                                  3   
92                                                  4   
93                                                  4   
94                                                  3   
95                                                  3   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).34  \
0   I work hard to accomplish my goals (0=Strongly...   
1                                              neo_35   
2                                                   4   
3                                                   4   
4                                                   3   
5                                                   3   
6                                                   4   
7                                                   4   
8                                                   3   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  3   
13                                                  3   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  4   
18                                                  3   
19                                                  2   
20                                                  3   
21                                                  3   
22                                                  3   
23                                                  3   
24                                                  4   
25                                                  4   
26                                                  3   
27                                                  4   
28                                                  4   
29                                                  3   
30                                                  4   
31                                                  3   
32                                                  4   
33                                                  2   
34                                                  3   
35                                                  4   
36                                                  3   
37                                                  3   
38                                                  3   
39                                                  3   
40                                                  3   
41                                                  2   
42                                                  3   
43                                                  2   
44                                                  4   
45                                                  3   
46                                                  4   
47                                                  2   
48                                                  4   
49                                                  4   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                  3   
54                                                  4   
55                                                  2   
56                                                  3   
57                                                  3   
58                                                  2   
59                                                  3   
60                                                  3   
61                                                  3   
62                                                  4   
63                                                  4   
64                                                  4   
65                                                  3   
66                                                  2   
67                                                  3   
68                                                  4   
69                                                  4   
70                                                  4   
71                                                  3   
72                                                  2   
73                                                  4   
74                                                  3   
75                                                  2   
76                                                  4   
77                                                  2   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  3   
82                                                  4   
83                                                  1   
84                                                  4   
85                                                  2   
86                                                  3   
87                                                  3   
88                                                  3   
89                                                  4   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                  4   
94                                                  3   
95                                                  4   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).35  \
0   I often get angry at the way people treat me (...   
1                                              neo_36   
2                                                   0   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   2   
8                                                   1   
9                                                   0   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  2   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  0   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  0   
28                                                  1   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  1   
33                                                  3   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  0   
42                                                  2   
43                                                  3   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  3   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  1   
55                                                  3   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  0   
68                                                  0   
69                                                  2   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  0   
74                                                  1   
75                                                  1   
76                                                  3   
77                                                  3   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  0   
82                                                  2   
83                                                  1   
84                                                  2   
85                                                  0   
86                                                  1   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  3   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).36  \
0   I am a cheerful, high-spirited person (0=Stron...   
1                                              neo_37   
2                                                   3   
3                                                   3   
4                                                   3   
5                                                   3   
6                                                   2   
7                                                   4   
8                                                   3   
9                                                   4   
10                                                  3   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  3   
15                                                  3   
16                                                  3   
17                                                  4   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  2   
27                                                  3   
28                                                  4   
29                                                  2   
30                                                  4   
31                                                  3   
32                                                  3   
33                                                  3   
34                                                  3   
35                                                  3   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  2   
41                                                  3   
42                                                  3   
43                                                  1   
44                                                  4   
45                                                  1   
46                                                  4   
47                                                  2   
48                                                  2   
49                                                  3   
50                                                  3   
51                                                  2   
52                                                  4   
53                                                  2   
54                                                  4   
55                                                  4   
56                                                  3   
57                                                  3   
58                                                  2   
59                                                  4   
60                                                  3   
61                                                  4   
62                                                  2   
63                                                  2   
64                                                  4   
65                                                  2   
66                                                  2   
67                                                  4   
68                                                  3   
69                                                  3   
70                                                  4   
71                                                  2   
72                                                  2   
73                                                  3   
74                                                  3   
75                                                  2   
76                                                  2   
77                                                  2   
78                                                  2   
79                                                  2   
80                                                  4   
81                                                  2   
82                                                  4   
83                                                  3   
84                                                  3   
85                                                  2   
86                                                  2   
87                                                  3   
88                                                  3   
89                                                  4   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  3   
94                                                  2   
95                                                  4   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).37  \
0   I believe we should look to our religious auth...   
1                                              neo_38   
2                                                   3   
3                                                   3   
4                                                   2   
5                                                   3   
6                                                   4   
7                                                   2   
8                                                   4   
9                                                   3   
10                                                  4   
11                                                  4   
12                                                  2   
13                                                  3   
14                                                  4   
15                                                  4   
16                                                  1   
17                                                  4   
18                                                  3   
19                                                  4   
20                                                  4   
21                                                  3   
22                                                  3   
23                                                  2   
24                                                  3   
25                                                  3   
26                                                  4   
27                                                  4   
28                                                  4   
29                                                  3   
30                                                  0   
31                                                  3   
32                                                  3   
33                                                  2   
34                                                  3   
35                                                  4   
36                                                  4   
37                                                  4   
38                                                  2   
39                                                  3   
40                                                  3   
41                                                  4   
42                                                  1   
43                                                  2   
44                                                  4   
45                                                  3   
46                                                  2   
47                                                  3   
48                                                  2   
49                                                  4   
50                                                  3   
51                                                  4   
52                                                  1   
53                                                  3   
54                                                  3   
55                                                  1   
56                                                  4   
57                                                  2   
58                                                  4   
59                                                  4   
60                                                  4   
61                                                  4   
62                                                  4   
63                                                  2   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  0   
68                                                  0   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  2   
83                                                  0   
84                                                  2   
85                                                  0   
86                                                  1   
87                                                  2   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  2   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).38  \
0   Some people think of me as cold and calculatin...   
1                                              neo_39   
2                                                   4   
3                                                   4   
4                                                   3   
5                                                   3   
6                                                   2   
7                                                   4   
8                                                   4   
9                                                   4   
10                                                  2   
11                                                  4   
12                                                  3   
13                                                  3   
14                                                  3   
15                                                  1   
16                                                  4   
17                                                  3   
18                                                  3   
19                                                  3   
20                                                  3   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  4   
25                                                  3   
26                                                  3   
27                                                  3   
28                                                  4   
29                                                  3   
30                                                  3   
31                                                  3   
32                                                  2   
33                                                  3   
34                                                  3   
35                                                  4   
36                                                  2   
37                                                  4   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  4   
42                                                  4   
43                                                  3   
44                                                  4   
45                                                  1   
46                                                  4   
47                                                  3   
48                                                  3   
49                                                  3   
50                                                  3   
51                                                  3   
52                                                  4   
53                                                  3   
54                                                  2   
55                                                  3   
56                                                  3   
57                                                  2   
58                                                  1   
59                                                  4   
60                                                  3   
61                                                  4   
62                                                  1   
63                                                  3   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  0   
68                                                  3   
69                                                  1   
70                                                  0   
71                                                  3   
72                                                  1   
73                                                  0   
74                                                  1   
75                                                  1   
76                                                  2   
77                                                  3   
78                                                  2   
79                                                  3   
80                                                  0   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  0   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  0   
90                                                  2   
91                                                  1   
92                                                  2   
93                                                  3   
94                                                  2   
95                                                  0   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).39  \
0   When I make a commitment, I can always be coun...   
1                                              neo_40   
2                                                   3   
3                                                   4   
4                                                   3   
5                                                   4   
6                                                   3   
7                                                   3   
8                                                   1   
9                                                   3   
10                                                  3   
11                                                  2   
12                                                  2   
13                                                  2   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  3   
18                                                  3   
19                                                  3   
20                                                  3   
21                                                  4   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  4   
27                                                  4   
28                                                  3   
29                                                  4   
30                                                  4   
31                                                  1   
32                                                  4   
33                                                  4   
34                                                  2   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  3   
42                                                  4   
43                                                  3   
44                                                  2   
45                                                  3   
46                                                  3   
47                                                  3   
48                                                  4   
49                                                  4   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                  3   
54                                                  4   
55                                                  2   
56                                                  1   
57                                                  4   
58                                                  4   
59                                                  3   
60                                                  3   
61                                                  3   
62                                                  4   
63                                                  4   
64                                                  4   
65                                                  3   
66                                                  1   
67                                                  3   
68                                                  4   
69                                                  3   
70                                                  3   
71                                                  3   
72                                                  1   
73                                                  4   
74                                                  2   
75                                                  2   
76                                                  4   
77                                                  1   
78                                                  3   
79                                                  2   
80                                                  3   
81                                                  4   
82                                                  4   
83                                                  3   
84                                                  1   
85                                                  3   
86                                                  3   
87                                                  3   
88                                                  4   
89                                                  3   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                  4   
94                                                  3   
95                                                  4   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).40  \
0   Too often, when things go wrong, I get discour...   
1                                              neo_41   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  0   
22                                                  2   
23                                                  1   
24                                                  0   
25                                                  3   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  0   
33                                                  2   
34                                                  1   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  1   
43                                                  3   
44                                                  2   
45                                                  1   
46                                                  0   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  3   
53                                                  1   
54                                                  0   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  0   
59                                                  1   
60                                                  2   
61                                                  3   
62                                                  0   
63                                                  1   
64                                                  2   
65                                                  1   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  0   
73                                                  1   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  0   
79                                                  2   
80                                                  2   
81                                                  0   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  0   
94                                                  1   
95                                                  0   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).41  \
0   I am not a cheerful optimist (0=Strongly Disag...   
1                                              neo_42   
2                                                   4   
3                                                   4   
4                                                   3   
5                                                   3   
6                                                   2   
7                                                   4   
8                                                   1   
9                                                   4   
10                                                  2   
11                                                  1   
12                                                  2   
13                                                  3   
14                                                  4   
15                                                  2   
16                                                  3   
17                                                  4   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  4   
24                                                  4   
25                                                  3   
26                                                  3   
27                                                  4   
28                                                  4   
29                                                  3   
30                                                  3   
31                                                  3   
32                                                  2   
33                                                  3   
34                                                  3   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  4   
39                                                  3   
40                                                  3   
41                                                  2   
42                                                  1   
43                                                  2   
44                                                  4   
45                                                  3   
46                                                  4   
47                                                  2   
48                                                  2   
49                                                  4   
50                                                  3   
51                                                  1   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  3   
56                                                  3   
57                                                  3   
58                                                  2   
59                                                  4   
60                                                  3   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  4   
65                                                  3   
66                                                  1   
67                                                  1   
68                                                  4   
69                                                  1   
70                                                  0   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  2   
77                                                  3   
78                                                  2   
79                                                  3   
80                                                  0   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  1   
92                                                  3   
93                                                  2   
94                                                  2   
95                                                  0   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).42  \
0   Sometimes when I am reading poetry or looking ...   
1                                              neo_43   
2                                                   3   
3                                                   2   
4                                                   1   
5                                                   4   
6                                                   1   
7                                                   3   
8                                                   1   
9                                                   0   
10                                                  3   
11                                                  3   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  3   
16                                                  0   
17                                                  0   
18                                                  3   
19                                                  2   
20                                                  0   
21                                                  2   
22                                                  2   
23                                                  3   
24                                                  4   
25                                                  3   
26                                                  2   
27                                                  1   
28                                                  0   
29                                                  3   
30                                                  3   
31                                                  3   
32                                                  3   
33                                                  2   
34                                                  0   
35                                                  3   
36                                                  4   
37                                                  0   
38                                                  3   
39                                                  1   
40                                                  1   
41                                                  2   
42                                                  0   
43                                                  3   
44                                                  0   
45                                                  3   
46                                                  3   
47                                                  2   
48                                                  3   
49                                                  3   
50                                                  2   
51                                                  3   
52                                                  1   
53                                                  1   
54                                                  0   
55                                                  0   
56                                                  3   
57                                                  1   
58                                                  3   
59                                                  1   
60                                                  1   
61                                                  0   
62                                                  2   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  0   
68                                                  4   
69                                                  0   
70                                                  3   
71                                                  2   
72                                                  3   
73                                                  3   
74                                                  1   
75                                                  3   
76                                                  3   
77                                                  2   
78                                                  4   
79                                                  3   
80                                                  0   
81                                                  1   
82                                                  3   
83                                                  3   
84                                                  2   
85                                                  2   
86                                                  3   
87                                                  3   
88                                                  3   
89                                                  0   
90                                                  0   
91                                                  1   
92                                                  3   
93                                                  3   
94                                                  0   
95                                                  3   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).43  \
0   I'm hard-headed and tough-minded in my attitud...   
1                                              neo_44   
2                                                   3   
3                                                   3   
4                                                   2   
5                                                   3   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   4   
10                                                  1   
11                                                  2   
12                                                  1   
13                                                  2   
14                                                  2   
15                                                  1   
16                                                  3   
17                                                  1   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  1   
22                                                  3   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  3   
32                                                  2   
33                                                  3   
34                                                  3   
35                                                  1   
36                                                  1   
37                                                  0   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  4   
42                                                  2   
43                                                  1   
44                                                  3   
45                                                  2   
46                                                  4   
47                                                  2   
48                                                  2   
49                                                  2   
50                                                  3   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  3   
55                                                  3   
56                                                  1   
57                                                  1   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  3   
62                                                  1   
63                                                  2   
64                                                  2   
65                                                  3   
66                                                  2   
67                                                  1   
68                                                  2   
69                                                  3   
70                                                  4   
71                                                  0   
72                                                  2   
73                                                  1   
74                                                  2   
75                                                  2   
76                                                  3   
77                                                  3   
78                                                  3   
79                                                  3   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  3   
87                                                  2   
88                                                  4   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  3   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).44  \
0   Sometimes I'm not as dependable or reliable as...   
1                                              neo_45   
2                                                   3   
3                                                   4   
4                                                   1   
5                                                   4   
6                                                   1   
7                                                   4   
8                                                   1   
9                                                   2   
10                                                  1   
11                                                  1   
12                                                  2   
13                                                  2   
14                                                  4   
15                                                  2   
16                                                  2   
17                                                  1   
18                                                  3   
19                                                  1   
20                                                  3   
21                                                  4   
22                                                  1   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  3   
27                                                  4   
28                                                  3   
29                                                  3   
30                                                  3   
31                                                  0   
32                                                  3   
33                                                  3   
34                                                  2   
35                                                  4   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  3   
41                                                  2   
42                                                  4   
43                                                  0   
44                                                  2   
45                                                  3   
46                                                  3   
47                                                  3   
48                                                  4   
49                                                  4   
50                                                  3   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  3   
55                                                  1   
56                                                  3   
57                                                  4   
58                                                  4   
59                                                  3   
60                                                  1   
61                                                  4   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  2   
66                                                  3   
67                                                  3   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  3   
73                                                  0   
74                                                  3   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  0   
79                                                  1   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  3   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  2   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  0   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).45  \
0   I am seldom sad or depressed (0=Strongly Disag...   
1                                              neo_46   
2                                                   0   
3                                                   4   
4                                                   4   
5                                                   4   
6                                                   2   
7                                                   1   
8                                                   3   
9                                                   4   
10                                                  2   
11                                                  1   
12                                                  4   
13                                                  2   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  3   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  1   
22                                                  3   
23                                                  3   
24                                                  2   
25                                                  3   
26                                                  4   
27                                                  0   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  3   
32                                                  0   
33                                                  3   
34                                                  3   
35                                                  3   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  4   
40                                                  1   
41                                                  4   
42                                                  4   
43                                                  1   
44                                                  4   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  4   
50                                                  3   
51                                                  1   
52                                                  3   
53                                                  1   
54                                                  0   
55                                                  3   
56                                                  2   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  0   
65                                                  1   
66                                                  3   
67                                                  3   
68                                                  4   
69                                                  4   
70                                                  0   
71                                                  1   
72                                                  4   
73                                                  3   
74                                                  3   
75                                                  2   
76                                                  1   
77                                                  2   
78                                                  3   
79                                                  1   
80                                                  3   
81                                                  4   
82                                                  3   
83                                                  3   
84                                                  3   
85                                                  1   
86                                                  1   
87                                                  3   
88                                                  1   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  3   
93                                                  2   
94                                                  3   
95                                                  4   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).46  \
0   My life is fast-paced (0=Strongly Disagree\n1=...   
1                                              neo_47   
2                                                   4   
3                                                   2   
4                                                   2   
5                                                   3   
6                                                   3   
7                                                   3   
8                                                   4   
9                                                   2   
10                                                  2   
11                                                  4   
12                                                  2   
13                                                  2   
14                                                  3   
15                                                  3   
16                                                  3   
17                                                  4   
18                                                  3   
19                                                  1   
20                                                  1   
21                                                  4   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  3   
26                                                  3   
27                                                  3   
28                                                  4   
29                                                  3   
30                                                  3   
31                                                  1   
32                                                  2   
33                                                  2   
34                                                  3   
35                                                  4   
36                                                  4   
37                                                  4   
38                                                  3   
39                                                  3   
40                                                  3   
41                                                  3   
42                                                  4   
43                                                  2   
44                                                  2   
45                                                  3   
46                                                  2   
47                                                  2   
48                                                  4   
49                                                  2   
50                                                  1   
51                                                  2   
52                                                  3   
53                                                  2   
54                                                  4   
55                                                  3   
56                                                  3   
57                                                  1   
58                                                  3   
59                                                  2   
60                                                  3   
61                                                  4   
62                                                  4   
63                                                  4   
64                                                  4   
65                                                  2   
66                                                  3   
67                                                  4   
68                                                  3   
69                                                  3   
70                                                  2   
71                                                  3   
72                                                  3   
73                                                  3   
74                                                  4   
75                                                  2   
76                                                  1   
77                                                  3   
78                                                  1   
79                                                  3   
80                                                  4   
81                                                  2   
82                                                  3   
83                                                  0   
84                                                  3   
85                                                  1   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  3   
90                                                  0   
91                                                  3   
92                                                  2   
93                                                  4   
94                                                  3   
95                                                  3   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).47  \
0   I have little interest in speculating on the n...   
1                                              neo_48   
2                                                   2   
3                                                   3   
4                                                   3   
5                                                   4   
6                                                   3   
7                                                   3   
8                                                   4   
9                                                   3   
10                                                  4   
11                                                  3   
12                                                  2   
13                                                  1   
14                                                  2   
15                                                  4   
16                                                  2   
17                                                  4   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  2   
27                                                  2   
28                                                  3   
29                                                  3   
30                                                  4   
31                                                  4   
32                                                  3   
33                                                  2   
34                                                  1   
35                                                  4   
36                                                  3   
37                                                  1   
38                                                  1   
39                                                  3   
40                                                  1   
41                                                  4   
42                                                  1   
43                                                  4   
44                                                  3   
45                                                  3   
46                                                  4   
47                                                  1   
48                                                  4   
49                                                  2   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                  1   
54                                                  0   
55                                                  3   
56                                                  3   
57                                                  2   
58                                                  3   
59                                                  3   
60                                                  2   
61                                                  3   
62                                                  3   
63                                                  2   
64                                                  3   
65                                                  1   
66                                                  3   
67                                                  1   
68                                                  0   
69                                                  2   
70                                                  0   
71                                                  0   
72                                                  2   
73                                                  2   
74                                                  3   
75                                                  2   
76                                                  4   
77                                                  1   
78                                                  1   
79                                                  3   
80                                                  0   
81                                                  0   
82                                                  2   
83                                                  1   
84                                                  1   
85                                                  3   
86                                                  0   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  0   
92                                                  1   
93                                                  1   
94                                                  3   
95                                                  2   
96                                                  0   

              NEO Five-Factory Inventory (NEO-FFI).48  \
0    I generally try to be thoughtful and consider...   
1                                              neo_49   
2                                                   4   
3                                                   3   
4                                                   3   
5                                                   4   
6                                                   4   
7                                                   4   
8                                                   4   
9                                                   4   
10                                                  4   
11                                                  4   
12                                                  3   
13                                                  3   
14                                                  4   
15                                                  3   
16                                                  4   
17                                                  3   
18                                                  3   
19                                                  4   
20                                                  3   
21                                                  4   
22                                                  3   
23                                                  3   
24                                                  4   
25                                                  4   
26                                                  4   
27                                                  4   
28                                                  4   
29                                                  4   
30                                                  4   
31                                                  3   
32                                                  3   
33                                                  3   
34                                                  3   
35                                                  4   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  3   
41                                                  4   
42                                                  4   
43                                                  3   
44                                                  4   
45                                                  3   
46                                                  4   
47                                                  3   
48                                                  4   
49                                                  4   
50                                                  3   
51                                                  4   
52                                                  4   
53                                                  3   
54                                                  4   
55                                                  3   
56                                                  3   
57                                                  4   
58                                                  4   
59                                                  3   
60                                                  3   
61                                                  4   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  3   
66                                                  3   
67                                                  3   
68                                                  3   
69                                                  3   
70                                                  4   
71                                                  4   
72                                                  3   
73                                                  4   
74                                                  3   
75                                                  3   
76                                                  3   
77                                                  3   
78                                                  4   
79                                                  4   
80                                                  4   
81                                                  3   
82                                                  4   
83                                                  4   
84                                                  4   
85                                                  4   
86                                                  3   
87                                                  4   
88                                                  4   
89                                                  4   
90                                                  3   
91                                                  3   
92                                                  4   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).49  \
0   I am a productive person who always gets the j...   
1                                              neo_50   
2                                                   4   
3                                                   4   
4                                                   3   
5                                                   4   
6                                                   3   
7                                                   4   
8                                                   2   
9                                                   3   
10                                                  3   
11                                                  4   
12                                                  3   
13                                                  4   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  3   
18                                                  3   
19                                                  2   
20                                                  3   
21                                                  3   
22                                                  1   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  3   
27                                                  4   
28                                                  3   
29                                                  4   
30                                                  3   
31                                                  3   
32                                                  3   
33                                                  3   
34                                                  2   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  2   
41                                                  2   
42                                                  3   
43                                                  0   
44                                                  3   
45                                                  2   
46                                                  3   
47                                                  3   
48                                                  3   
49                                                  4   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  3   
54                                                  4   
55                                                  1   
56                                                  3   
57                                                  4   
58                                                  3   
59                                                  3   
60                                                  3   
61                                                  4   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  2   
66                                                  2   
67                                                  3   
68                                                  3   
69                                                  3   
70                                                  4   
71                                                  3   
72                                                  1   
73                                                  3   
74                                                  3   
75                                                  2   
76                                                  4   
77                                                  3   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  3   
82                                                  4   
83                                                  1   
84                                                  3   
85                                                  3   
86                                                  3   
87                                                  3   
88                                                  3   
89                                                  4   
90                                                  3   
91                                                  3   
92                                                  4   
93                                                  2   
94                                                  3   
95                                                  4   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).50  \
0    I often feel helpless and want someone else t...   
1                                              neo_51   
2                                                   0   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  0   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  0   
26                                                  1   
27                                                  0   
28                                                  1   
29                                                  0   
30                                                  1   
31                                                  3   
32                                                  0   
33                                                  2   
34                                                  2   
35                                                  3   
36                                                  1   
37                                                  1   
38                                                  3   
39                                                  0   
40                                                  1   
41                                                  1   
42                                                  0   
43                                                  2   
44                                                  0   
45                                                  1   
46                                                  0   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  0   
52                                                  0   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  2   
60                                                  2   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  1   
68                                                  1   
69                                                  0   
70                                                  0   
71                                                  2   
72                                                  2   
73                                                  1   
74                                                  0   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  2   
79                                                  2   
80                                                  1   
81                                                  0   
82                                                  1   
83                                                  4   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  0   
89                                                  0   
90                                                  1   
91                                                  3   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).51  \
0   I am a very active person (0=Strongly Disagree...   
1                                              neo_52   
2                                                   4   
3                                                   3   
4                                                   2   
5                                                   4   
6                                                   4   
7                                                   4   
8                                                   4   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  3   
13                                                  2   
14                                                  4   
15                                                  4   
16                                                  3   
17                                                  0   
18                                                  2   
19                                                  1   
20                                                  2   
21                                                  4   
22                                                  1   
23                                                  3   
24                                                  2   
25                                                  3   
26                                                  2   
27                                                  3   
28                                                  4   
29                                                  2   
30                                                  3   
31                                                  2   
32                                                  4   
33                                                  2   
34                                                  3   
35                                                  3   
36                                                  3   
37                                                  4   
38                                                  3   
39                                                  2   
40                                                  3   
41                                                  3   
42                                                  4   
43                                                  4   
44                                                  3   
45                                                  3   
46                                                  4   
47                                                  2   
48                                                  4   
49                                                  3   
50                                                  2   
51                                                  1   
52                                                  4   
53                                                  3   
54                                                  4   
55                                                  3   
56                                                  3   
57                                                  3   
58                                                  3   
59                                                  4   
60                                                  2   
61                                                  3   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  2   
67                                                  2   
68                                                  3   
69                                                  4   
70                                                  4   
71                                                  3   
72                                                  4   
73                                                  2   
74                                                  4   
75                                                  2   
76                                                  2   
77                                                  3   
78                                                  1   
79                                                  3   
80                                                  4   
81                                                  3   
82                                                  4   
83                                                  1   
84                                                  2   
85                                                  3   
86                                                  2   
87                                                  2   
88                                                  3   
89                                                  4   
90                                                  1   
91                                                  4   
92                                                  1   
93                                                  4   
94                                                  4   
95                                                  4   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).52  \
0   I have a lot of intellectual curiosity (0=Stro...   
1                                              neo_53   
2                                                   3   
3                                                   3   
4                                                   3   
5                                                   3   
6                                                   4   
7                                                   3   
8                                                   2   
9                                                   4   
10                                                  4   
11                                                  3   
12                                                  2   
13                                                  2   
14                                                  3   
15                                                  4   
16                                                  3   
17                                                  1   
18                                                  3   
19                                                  3   
20                                                  3   
21                                                  4   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  2   
27                                                  3   
28                                                  3   
29                                                  4   
30                                                  4   
31                                                  4   
32                                                  4   
33                                                  2   
34                                                  2   
35                                                  4   
36                                                  3   
37                                                  3   
38                                                  2   
39                                                  3   
40                                                  3   
41                                                  3   
42                                                  3   
43                                                  4   
44                                                  3   
45                                                  3   
46                                                  4   
47                                                  4   
48                                                  4   
49                                                  3   
50                                                  3   
51                                                  3   
52                                                  4   
53                                                  3   
54                                                  4   
55                                                  4   
56                                                  3   
57                                                  2   
58                                                  4   
59                                                  4   
60                                                  4   
61                                                  3   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  1   
66                                                  2   
67                                                  3   
68                                                  4   
69                                                  4   
70                                                  3   
71                                                  4   
72                                                  4   
73                                                  4   
74                                                  3   
75                                                  3   
76                                                  3   
77                                                  4   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  4   
82                                                  4   
83                                                  3   
84                                                  3   
85                                                  1   
86                                                  3   
87                                                  3   
88                                                  3   
89                                                  3   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                  3   
94                                                  3   
95                                                  3   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).53  \
0    If I don't like people, I let them know it (0...   
1                                              neo_54   
2                                                   3   
3                                                   2   
4                                                   4   
5                                                   3   
6                                                   1   
7                                                   3   
8                                                   4   
9                                                   4   
10                                                  2   
11                                                  3   
12                                                  1   
13                                                  1   
14                                                  2   
15                                                  3   
16                                                  4   
17                                                  1   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  2   
22                                                  3   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  3   
27                                                  2   
28                                                  3   
29                                                  1   
30                                                  2   
31                                                  3   
32                                                  1   
33                                                  4   
34                                                  3   
35                                                  4   
36                                                  3   
37                                                  4   
38                                                  3   
39                                                  1   
40                                                  3   
41                                                  3   
42                                                  2   
43                                                  2   
44                                                  2   
45                                                  3   
46                                                  4   
47                                                  3   
48                                                  4   
49                                                  2   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  1   
56                                                  4   
57                                                  3   
58                                                  3   
59                                                  2   
60                                                  1   
61                                                  3   
62                                                  2   
63                                                  3   
64                                                  3   
65                                                  0   
66                                                  1   
67                                                  2   
68                                                  3   
69                                                  2   
70                                                  0   
71                                                  3   
72                                                  3   
73                                                  0   
74                                                  4   
75                                                  0   
76                                                  2   
77                                                  2   
78                                                  2   
79                                                  0   
80                                                  1   
81                                                  1   
82                                                  2   
83                                                  4   
84                                                  2   
85                                                  0   
86                                                  0   
87                                                  1   
88                                                  1   
89                                                  0   
90                                                  4   
91                                                  0   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).54  \
0   I never seem to be able to get organized (0=St...   
1                                              neo_55   
2                                                   4   
3                                                   4   
4                                                   2   
5                                                   4   
6                                                   3   
7                                                   4   
8                                                   1   
9                                                   1   
10                                                  3   
11                                                  3   
12                                                  2   
13                                                  4   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  3   
18                                                  2   
19                                                  3   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  3   
27                                                  4   
28                                                  2   
29                                                  3   
30                                                  1   
31                                                  2   
32                                                  3   
33                                                  4   
34                                                  1   
35                                                  3   
36                                                  3   
37                                                  3   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  1   
42                                                  3   
43                                                  0   
44                                                  4   
45                                                  3   
46                                                  3   
47                                                  1   
48                                                  3   
49                                                  3   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                  3   
54                                                  4   
55                                                  3   
56                                                  3   
57                                                  4   
58                                                  4   
59                                                  3   
60                                                  1   
61                                                  4   
62                                                  4   
63                                                  4   
64                                                  3   
65                                                  3   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  2   
72                                                  3   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  1   
88                                                  4   
89                                                  0   
90                                                  3   
91                                                  1   
92                                                  1   
93                                                  0   
94                                                  3   
95                                                  0   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).55  \
0   At times I have been so ashamed I just wanted ...   
1                                              neo_56   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   0   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  1   
18                                                  1   
19                                                  0   
20                                                  2   
21                                                  0   
22                                                  3   
23                                                  1   
24                                                  2   
25                                                  3   
26                                                  1   
27                                                  0   
28                                                  2   
29                                                  1   
30                                                  3   
31                                                  3   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  4   
36                                                  1   
37                                                  3   
38                                                  1   
39                                                  0   
40                                                  1   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  2   
47                                                  3   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  0   
53                                                  2   
54                                                  0   
55                                                  3   
56                                                  3   
57                                                  0   
58                                                  1   
59                                                  2   
60                                                  1   
61                                                  0   
62                                                  0   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  0   
68                                                  1   
69                                                  2   
70                                                  0   
71                                                  1   
72                                                  2   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  1   
77                                                  3   
78                                                  0   
79                                                  3   
80                                                  2   
81                                                  0   
82                                                  1   
83                                                  4   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  2   
88                                                  0   
89                                                  3   
90                                                  1   
91                                                  2   
92                                                  1   
93                                                  0   
94                                                  1   
95                                                  1   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).56  \
0   I would rather go my own way than be a leader ...   
1                                              neo_57   
2                                                   4   
3                                                   3   
4                                                   2   
5                                                   3   
6                                                   3   
7                                                   3   
8                                                   0   
9                                                   4   
10                                                  2   
11                                                  4   
12                                                  2   
13                                                  3   
14                                                  3   
15                                                  2   
16                                                  3   
17                                                  4   
18                                                  2   
19                                                  1   
20                                                  3   
21                                                  3   
22                                                  3   
23                                                  2   
24                                                  3   
25                                                  4   
26                                                  2   
27                                                  4   
28                                                  4   
29                                                  2   
30                                                  3   
31                                                  1   
32                                                  3   
33                                                  0   
34                                                  3   
35                                                  3   
36                                                  1   
37                                                  4   
38                                                  2   
39                                                  4   
40                                                  2   
41                                                  4   
42                                                  3   
43                                                  3   
44                                                  3   
45                                                  2   
46                                                  3   
47                                                  3   
48                                                  3   
49                                                  3   
50                                                  2   
51                                                  0   
52                                                  4   
53                                                  3   
54                                                  4   
55                                                  4   
56                                                  3   
57                                                  3   
58                                                  3   
59                                                  3   
60                                                  2   
61                                                  4   
62                                                  3   
63                                                  3   
64                                                  0   
65                                                  3   
66                                                  2   
67                                                  2   
68                                                  0   
69                                                  2   
70                                                  2   
71                                                  1   
72                                                  3   
73                                                  1   
74                                                  2   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  0   
79                                                  3   
80                                                  1   
81                                                  2   
82                                                  1   
83                                                  3   
84                                                  2   
85                                                  4   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  1   
92                                                  3   
93                                                  0   
94                                                  1   
95                                                  1   
96                                                  1   

              NEO Five-Factory Inventory (NEO-FFI).57  \
0   I often enjoy playing with theories or abstrac...   
1                                              neo_58   
2                                                   1   
3                                                   3   
4                                                   1   
5                                                   2   
6                                                   3   
7                                                   1   
8                                                   3   
9                                                   3   
10                                                  4   
11                                                  3   
12                                                  2   
13                                                  2   
14                                                  1   
15                                                  4   
16                                                  3   
17                                                  0   
18                                                  2   
19                                                  2   
20                                                  2   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  2   
27                                                  0   
28                                                  2   
29                                                  3   
30                                                  3   
31                                                  4   
32                                                  3   
33                                                  2   
34                                                  1   
35                                                  4   
36                                                  3   
37                                                  0   
38                                                  4   
39                                                  4   
40                                                  1   
41                                                  4   
42                                                  1   
43                                                  2   
44                                                  2   
45                                                  3   
46                                                  3   
47                                                  3   
48                                                  3   
49                                                  3   
50                                                  3   
51                                                  2   
52                                                  3   
53                                                  3   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  1   
58                                                  3   
59                                                  3   
60                                                  3   
61                                                  1   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  1   
66                                                  3   
67                                                  4   
68                                                  4   
69                                                  1   
70                                                  3   
71                                                  3   
72                                                  3   
73                                                  3   
74                                                  1   
75                                                  3   
76                                                  1   
77                                                  3   
78                                                  3   
79                                                  2   
80                                                  1   
81                                                  3   
82                                                  3   
83                                                  3   
84                                                  3   
85                                                  1   
86                                                  4   
87                                                  3   
88                                                  4   
89                                                  1   
90                                                  3   
91                                                  1   
92                                                  3   
93                                                  3   
94                                                  2   
95                                                  2   
96                                                  4   

              NEO Five-Factory Inventory (NEO-FFI).58  \
0   If necessary, I am willing to manipulate peopl...   
1                                              neo_59   
2                                                   3   
3                                                   3   
4                                                   3   
5                                                   4   
6                                                   2   
7                                                   3   
8                                                   4   
9                                                   2   
10                                                  3   
11                                                  2   
12                                                  3   
13                                                  3   
14                                                  4   
15                                                  1   
16                                                  3   
17                                                  1   
18                                                  3   
19                                                  3   
20                                                  3   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  4   
25                                                  1   
26                                                  4   
27                                                  4   
28                                                  3   
29                                                  4   
30                                                  1   
31                                                  1   
32                                                  2   
33                                                  4   
34                                                  3   
35                                                  1   
36                                                  3   
37                                                  1   
38                                                  4   
39                                                  4   
40                                                  1   
41                                                  4   
42                                                  4   
43                                                  4   
44                                                  4   
45                                                  2   
46                                                  3   
47                                                  2   
48                                                  4   
49                                                  3   
50                                                  3   
51                                                  4   
52                                                  4   
53                                                  4   
54                                                  1   
55                                                  1   
56                                                  3   
57                                                  4   
58                                                  2   
59                                                  1   
60                                                  2   
61                                                  4   
62                                                  1   
63                                                  3   
64                                                  3   
65                                                  2   
66                                                  1   
67                                                  0   
68                                                  1   
69                                                  1   
70                                                  0   
71                                                  2   
72                                                  3   
73                                                  1   
74                                                  2   
75                                                  1   
76                                                  3   
77                                                  3   
78                                                  1   
79                                                  0   
80                                                  0   
81                                                  1   
82                                                  1   
83                                                  3   
84                                                  0   
85                                                  0   
86                                                  1   
87                                                  0   
88                                                  0   
89                                                  3   
90                                                  0   
91                                                  1   
92                                                  3   
93                                                  0   
94                                                  1   
95                                                  0   
96                                                  2   

              NEO Five-Factory Inventory (NEO-FFI).59  \
0   I strive for excellence in everything I do (0=...   
1                                              neo_60   
2                                                   4   
3                                                   3   
4                                                   2   
5                                                   2   
6                                                   3   
7                                                   3   
8                                                   2   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  4   
13                                                  3   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  4   
18                                                  3   
19                                                  2   
20                                                  3   
21                                                  2   
22                                                  2   
23                                                  2   
24                                                  4   
25                                                  4   
26                                                  2   
27                                                  4   
28                                                  4   
29                                                  3   
30                                                  3   
31                                                  1   
32                                                  4   
33                                                  3   
34                                                  2   
35                                                  4   
36                                                  2   
37                                                  4   
38                                                  2   
39                                                  3   
40                                                  3   
41                                                  3   
42                                                  3   
43                                                  2   
44                                                  4   
45                                                  3   
46                                                  4   
47                                                  2   
48                                                  4   
49                                                  0   
50                                                  3   
51                                                  2   
52                                                  3   
53                                                  3   
54                                                  3   
55                                                  4   
56                                                  2   
57                                                  2   
58                                                  4   
59                                                  4   
60                                                  3   
61                                                  2   
62                                                  4   
63                                                  4   
64                                                  4   
65                                                  1   
66                                                  2   
67                                                  3   
68                                                  4   
69                                                  4   
70                                                  4   
71                                                  3   
72                                                  3   
73                                                  4   
74                                                  4   
75                                                  3   
76                                                  3   
77                                                  3   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  3   
82                                                  3   
83                                                  1   
84                                                  4   
85                                                  2   
86                                                  2   
87                                                  3   
88                                                  3   
89                                                  4   
90                                                  3   
91                                                  3   
92                                                  4   
93                                                  2   
94                                                  4   
95                                                  4   
96                                                  3   

   Morningness-Eveningness Questionnaire Revised (MEQ-R)  \
0   Approximately what time would you get up if yo...      
1                                              meqr_1      
2                                                   3      
3                                                   3      
4                                                   2      
5                                                   2      
6                                                   2      
7                                                   3      
8                                                   3      
9                                                   2      
10                                                  2      
11                                                  2      
12                                                  5      
13                                                  2      
14                                                  3      
15                                                  2      
16                                                  2      
17                                                  3      
18                                                  3      
19                                                  3      
20                                                  3      
21                                                  2      
22                                                  2      
23                                                  3      
24                                                  3      
25                                                  2      
26                                                  3      
27                                                  3      
28                                                  2      
29                                                  5      
30                                                  3      
31                                                  4      
32                                                  3      
33                                                  3      
34                                                  1      
35                                                  2      
36                                                  3      
37                                                  2      
38                                                  3      
39                                                  3      
40                                                  5      
41                                                  5      
42                                                  2      
43                                                  2      
44                                                  3      
45                                                  3      
46                                                  3      
47                                                  2      
48                                                  3      
49                                                  4      
50                                                  3      
51                                                  2      
52                                                  2      
53                                                  3      
54                                                  3      
55                                                  2      
56                                                  3      
57                                                  4      
58                                                  2      
59                                                  2      
60                                                  1      
61                                                  3      
62                                                  3      
63                                                  3      
64                                                  2      
65                                                  1      
66                                                  2      
67                                                  4      
68                                                  2      
69                                                  2      
70                                                  3      
71                                                  4      
72                                                  2      
73                                                  3      
74                                                  2      
75                                                  2      
76                                                  2      
77                                                  3      
78                                                  3      
79                                                  3      
80                                                  3      
81                                                  4      
82                                                  4      
83                                                  5      
84                                                  3      
85                                                  2      
86                                                  2      
87                                                  3      
88                                                  4      
89                                                  3      
90                                                  4      
91                                                  4      
92                                                  2      
93                                                  3      
94                                                  4      
95                                                  4      
96                                                  2      

   Morningness-Eveningness Questionnaire Revised (MEQ-R).1  \
0   Approximately what time would you go to bed if...        
1                                              meqr_2        
2                                                   4        
3                                                   3        
4                                                   2        
5                                                   2        
6                                                   3        
7                                                   3        
8                                                   3        
9                                                   3        
10                                                  1        
11                                                  2        
12                                                  4        
13                                                  3        
14                                                  3        
15                                                  3        
16                                                  3        
17                                                  3        
18                                                  3        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  2        
23                                                  2        
24                                                  3        
25                                                  2        
26                                                  3        
27                                                  3        
28                                                  2        
29                                                  5        
30                                                  3        
31                                                  4        
32                                                  3        
33                                                  2        
34                                                  3        
35                                                  2        
36                                                  3        
37                                                  2        
38                                                  3        
39                                                  2        
40                                                  2        
41                                                  3        
42                                                  1        
43                                                  2        
44                                                  3        
45                                                  3        
46                                                  3        
47                                                  4        
48                                                  3        
49                                                  3        
50                                                  3        
51                                                  1        
52                                                  3        
53                                                  2        
54                                                  3        
55                                                  3        
56                                                  3        
57                                                  2        
58                                                  2        
59                                                  2        
60                                                  1        
61                                                  3        
62                                                  2        
63                                                  3        
64                                                  2        
65                                                  2        
66                                                  3        
67                                                  3        
68                                                  1        
69                                                  3        
70                                                  4        
71                                                  3        
72                                                  1        
73                                                  3        
74                                                  3        
75                                                  3        
76                                                  3        
77                                                  2        
78                                                  2        
79                                                  4        
80                                                  3        
81                                                  3        
82                                                  3        
83                                                  3        
84                                                  1        
85                                                  3        
86                                                  2        
87                                                  3        
88                                                  1        
89                                                  3        
90                                                  3        
91                                                  3        
92                                                  2        
93                                                  3        
94                                                  3        
95                                                  4        
96                                                  2        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).2  \
0   If you usually have to get up at a specific ti...        
1                                              meqr_3        
2                                                   1        
3                                                   1        
4                                                   1        
5                                                   1        
6                                                   1        
7                                                   1        
8                                                   3        
9                                                   1        
10                                                  1        
11                                                  1        
12                                                  1        
13                                                  1        
14                                                  1        
15                                                  2        
16                                                  1        
17                                                  1        
18                                                  3        
19                                                  3        
20                                                  1        
21                                                  1        
22                                                  1        
23                                                  3        
24                                                  2        
25                                                  1        
26                                                  1        
27                                                  1        
28                                                  1        
29                                                  2        
30                                                  2        
31                                                  1        
32                                                  2        
33                                                  1        
34                                                  1        
35                                                  1        
36                                                  1        
37                                                  1        
38                                                  1        
39                                                  2        
40                                                  1        
41                                                  4        
42                                                  1        
43                                                  2        
44                                                  3        
45                                                  1        
46                                                  2        
47                                                  1        
48                                                  1        
49                                                  2        
50                                                  4        
51                                                  1        
52                                                  1        
53                                                  1        
54                                                  1        
55                                                  1        
56                                                  1        
57                                                  2        
58                                                  2        
59                                                  1        
60                                                  1        
61                                                  2        
62                                                  1        
63                                                  1        
64                                                  1        
65                                                  1        
66                                                  1        
67                                                  1        
68                                                  1        
69                                                  3        
70                                                  3        
71                                                  1        
72                                                  2        
73                                                  2        
74                                                  1        
75                                                  1        
76                                                  2        
77                                                  1        
78                                                  1        
79                                                  1        
80                                                  1        
81                                                  2        
82                                                  2        
83                                                  4        
84                                                  1        
85                                                  1        
86                                                  1        
87                                                  1        
88                                                  4        
89                                                  1        
90                                                  4        
91                                                  1        
92                                                  3        
93                                                  1        
94                                                  3        
95                                                  1        
96                                                  1        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).3  \
0   How easy do you find it to get up in the morni...        
1                                              meqr_4        
2                                                   3        
3                                                   4        
4                                                   2        
5                                                   4        
6                                                   1        
7                                                   3        
8                                                   4        
9                                                   2        
10                                                  2        
11                                                  3        
12                                                  3        
13                                                  2        
14                                                  3        
15                                                  2        
16                                                  2        
17                                                  2        
18                                                  3        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  2        
23                                                  3        
24                                                  2        
25                                                  1        
26                                                  2        
27                                                  3        
28                                                  1        
29                                                  2        
30                                                  3        
31                                                  1        
32                                                  4        
33                                                  2        
34                                                  1        
35                                                  2        
36                                                  2        
37                                                  4        
38                                                  3        
39                                                  3        
40                                                  2        
41                                                  4        
42                                                  2        
43                                                  2        
44                                                  3        
45                                                  2        
46                                                  3        
47                                                  2        
48                                                  3        
49                                                  2        
50                                                  3        
51                                                  3        
52                                                  4        
53                                                  2        
54                                                  2        
55                                                  1        
56                                                  3        
57                                                  3        
58                                                  2        
59                                                  2        
60                                                  2        
61                                                  2        
62                                                  3        
63                                                  3        
64                                                  4        
65                                                  2        
66                                                  2        
67                                                  3        
68                                                  2        
69                                                  1        
70                                                  3        
71                                                  2        
72                                                  3        
73                                                  3        
74                                                  3        
75                                                  3        
76                                                  2        
77                                                  3        
78                                                  1        
79                                                  3        
80                                                  3        
81                                                  3        
82                                                  3        
83                                                  2        
84                                                  2        
85                                                  2        
86                                                  3        
87                                                  2        
88                                                  3        
89                                                  2        
90                                                  2        
91                                                  2        
92                                                  4        
93                                                  1        
94                                                  3        
95                                                  3        
96                                                  3        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).4  \
0   How alert do you feel during the first half ho...        
1                                              meqr_5        
2                                                   2        
3                                                   3        
4                                                   1        
5                                                   3        
6                                                   2        
7                                                   3        
8                                                   2        
9                                                   3        
10                                                  3        
11                                                  2        
12                                                  3        
13                                                  2        
14                                                  3        
15                                                  1        
16                                                  2        
17                                                  3        
18                                                  3        
19                                                  3        
20                                                  2        
21                                                  3        
22                                                  2        
23                                                  2        
24                                                  3        
25                                                  2        
26                                                  2        
27                                                  3        
28                                                  2        
29                                                  2        
30                                                  2        
31                                                  2        
32                                                  3        
33                                                  2        
34                                                  1        
35                                                  2        
36                                                  2        
37                                                  3        
38                                                  2        
39                                                  2        
40                                                  2        
41                                                  3        
42                                                  2        
43                                                  3        
44                                                  3        
45                                                  3        
46                                                  3        
47                                                  3        
48                                                  2        
49                                                  3        
50                                                  3        
51                                                  4        
52                                                  3        
53                                                  1        
54                                                  2        
55                                                  2        
56                                                  2        
57                                                  3        
58                                                  4        
59                                                  3        
60                                                  1        
61                                                  2        
62                                                  3        
63                                                  2        
64                                                  2        
65                                                  1        
66                                                  2        
67                                                  2        
68                                                  2        
69                                                  2        
70                                                  3        
71                                                  3        
72                                                  3        
73                                                  3        
74                                                  3        
75                                                  2        
76                                                  2        
77                                                  1        
78                                                  1        
79                                                  2        
80                                                  1        
81                                                  3        
82                                                  3        
83                                                  3        
84                                                  3        
85                                                  1        
86                                                  2        
87                                                  2        
88                                                  4        
89                                                  1        
90                                                  2        
91                                                  2        
92                                                  3        
93                                                  3        
94                                                  4        
95                                                  4        
96                                                  3        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).5  \
0   How hungry do you feel during the first half h...        
1                                              meqr_6        
2                                                   2        
3                                                   1        
4                                                   2        
5                                                   2        
6                                                   3        
7                                                   3        
8                                                   1        
9                                                   2        
10                                                  3        
11                                                  2        
12                                                  2        
13                                                  4        
14                                                  2        
15                                                  2        
16                                                  2        
17                                                  2        
18                                                  2        
19                                                  3        
20                                                  4        
21                                                  2        
22                                                  2        
23                                                  3        
24                                                  1        
25                                                  1        
26                                                  2        
27                                                  3        
28                                                  3        
29                                                  1        
30                                                  3        
31                                                  1        
32                                                  1        
33                                                  3        
34                                                  1        
35                                                  1        
36                                                  2        
37                                                  1        
38                                                  2        
39                                                  3        
40                                                  3        
41                                                  3        
42                                                  2        
43                                                  3        
44                                                  2        
45                                                  2        
46                                                  2        
47                                                  2        
48                                                  2        
49                                                  2        
50                                                  1        
51                                                  2        
52                                                  3        
53                                                  3        
54                                                  4        
55                                                  1        
56                                                  2        
57                                                  1        
58                                                  1        
59                                                  1        
60                                                  1        
61                                                  3        
62                                                  1        
63                                                  2        
64                                                  2        
65                                                  2        
66                                                  1        
67                                                  1        
68                                                  3        
69                                                  2        
70                                                  2        
71                                                  1        
72                                                  3        
73                                                  2        
74                                                  2        
75                                                  4        
76                                                  1        
77                                                  2        
78                                                  2        
79                                                  1        
80                                                  2        
81                                                  2        
82                                                  2        
83                                                  2        
84                                                  1        
85                                                  2        
86                                                  3        
87                                                  1        
88                                                  1        
89                                                  1        
90                                                  1        
91                                                  3        
92                                                  2        
93                                                  2        
94                                                  3        
95                                                  1        
96                                                  4        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).6  \
0   During the first half hour after you wake up i...        
1                                              meqr_7        
2                                                   2        
3                                                   2        
4                                                   2        
5                                                   1        
6                                                   4        
7                                                   3        
8                                                   2        
9                                                   3        
10                                                  2        
11                                                  3        
12                                                  2        
13                                                  3        
14                                                  1        
15                                                  4        
16                                                  3        
17                                                  2        
18                                                  1        
19                                                  2        
20                                                  2        
21                                                  3        
22                                                  3        
23                                                  2        
24                                                  2        
25                                                  4        
26                                                  2        
27                                                  2        
28                                                  4        
29                                                  1        
30                                                  3        
31                                                  3        
32                                                  2        
33                                                  2        
34                                                  4        
35                                                  3        
36                                                  3        
37                                                  4        
38                                                  2        
39                                                  2        
40                                                  4        
41                                                  2        
42                                                  3        
43                                                  2        
44                                                  2        
45                                                  2        
46                                                  2        
47                                                  2        
48                                                  3        
49                                                  2        
50                                                  2        
51                                                  2        
52                                                  2        
53                                                  3        
54                                                  3        
55                                                  4        
56                                                  3        
57                                                  2        
58                                                  2        
59                                                  2        
60                                                  3        
61                                                  4        
62                                                  2        
63                                                  3        
64                                                  2        
65                                                  3        
66                                                  3        
67                                                  3        
68                                                  2        
69                                                  3        
70                                                  1        
71                                                  3        
72                                                  2        
73                                                  2        
74                                                  2        
75                                                  3        
76                                                  3        
77                                                  4        
78                                                  4        
79                                                  3        
80                                                  3        
81                                                  2        
82                                                  1        
83                                                  2        
84                                                  4        
85                                                  4        
86                                                  3        
87                                                  3        
88                                                  1        
89                                                  4        
90                                                  4        
91                                                  3        
92                                                  2        
93                                                  4        
94                                                  1        
95                                                  2        
96                                                  3        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).7  \
0   If you had no commitments (e.g., no school) th...        
1                                              meqr_8        
2                                                   4        
3                                                   2        
4                                                   1        
5                                                   2        
6                                                   2        
7                                                   2        
8                                                   3        
9                                                   2        
10                                                  1        
11                                                  4        
12                                                  3        
13                                                  4        
14                                                  3        
15                                                  2        
16                                                  4        
17                                                  4        
18                                                  3        
19                                                  4        
20                                                  3        
21                                                  2        
22                                                  3        
23                                                  2        
24                                                  3        
25                                                  2        
26                                                  4        
27                                                  3        
28                                                  2        
29                                                  4        
30                                                  3        
31                                                  4        
32                                                  4        
33                                                  2        
34                                                  2        
35                                                  2        
36                                                  4        
37                                                  2        
38                                                  2        
39                                                  2        
40                                                  2        
41                                                  3        
42                                                  2        
43                                                  1        
44                                                  2        
45                                                  3        
46                                                  4        
47                                                  2        
48                                                  3        
49                                                  3        
50                                                  2        
51                                                  2        
52                                                  4        
53                                                  2        
54                                                  4        
55                                                  4        
56                                                  3        
57                                                  2        
58                                                  4        
59                                                  1        
60                                                  2        
61                                                  4        
62                                                  2        
63                                                  3        
64                                                  2        
65                                                  2        
66                                                  1        
67                                                  3        
68                                                  3        
69                                                  2        
70                                                  3        
71                                                  1        
72                                                  2        
73                                                  2        
74                                                  3        
75                                                  2        
76                                                  3        
77                                                  2        
78                                                  2        
79                                                  2        
80                                                  2        
81                                                  4        
82                                                  3        
83                                                  2        
84                                                  4        
85                                                  1        
86                                                  2        
87                                                  2        
88                                                  2        
89                                                  2        
90                                                  2        
91                                                  2        
92                                                  2        
93                                                  2        
94                                                  3        
95                                                  2        
96                                                  3        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).8  \
0   You have decided to do physical exercise. A fr...        
1                                              meqr_9        
2                                                   2        
3                                                   4        
4                                                   1        
5                                                   4        
6                                                   4        
7                                                   4        
8                                                   4        
9                                                   3        
10                                                  3        
11                                                  2        
12                                                  3        
13                                                  3        
14                                                  4        
15                                                  3        
16                                                  2        
17                                                  2        
18                                                  3        
19                                                  3        
20                                                  2        
21                                                  2        
22                                                  2        
23                                                  4        
24                                                  3        
25                                                  1        
26                                                  3        
27                                                  3        
28                                                  3        
29                                                  4        
30                                                  3        
31                                                  1        
32                                                  4        
33                                                  3        
34                                                  1        
35                                                  3        
36                                                  2        
37                                                  4        
38                                                  3        
39                                                  3        
40                                                  3        
41                                                  3        
42                                                  3        
43                                                  3        
44                                                  3        
45                                                  2        
46                                                  2        
47                                                  3        
48                                                  1        
49                                                  3        
50                                                  3        
51                                                  1        
52                                                  3        
53                                                  2        
54                                                  3        
55                                                  2        
56                                                  3        
57                                                  3        
58                                                  4        
59                                                  2        
60                                                  2        
61                                                  2        
62                                                  3        
63                                                  3        
64                                                  3        
65                                                  2        
66                                                  2        
67                                                  2        
68                                                  2        
69                                                  3        
70                                                  4        
71                                                  3        
72                                                  2        
73                                                  4        
74                                                  3        
75                                                  2        
76                                                  2        
77                                                  2        
78                                                  2        
79                                                  4        
80                                                  3        
81                                                  3        
82                                                  4        
83                                                  3        
84                                                  3        
85                                                  3        
86                                                  3        
87                                                  2        
88                                                  2        
89                                                  4        
90                                                  2        
91                                                  4        
92                                                  4        
93                                                  4        
94                                                  4        
95                                                  4        
96                                                  3        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).9  \
0   At approximately what time in the evening do y...        
1                                             meqr_10        
2                                                   4        
3                                                   3        
4                                                   3        
5                                                   3        
6                                                   4        
7                                                   3        
8                                                   3        
9                                                   3        
10                                                  3        
11                                                  3        
12                                                  3        
13                                                  5        
14                                                  3        
15                                                  4        
16                                                  3        
17                                                  2        
18                                                  3        
19                                                  3        
20                                                  3        
21                                                  3        
22                                                  2        
23                                                  3        
24                                                  3        
25                                                  3        
26                                                  3        
27                                                  4        
28                                                  4        
29                                                  5        
30                                                  3        
31                                                  4        
32                                                  4        
33                                                  1        
34                                                  5        
35                                                  2        
36                                                  3        
37                                                  4        
38                                                  2        
39                                                  3        
40                                                  5        
41                                                  5        
42                                                  3        
43                                                  3        
44                                                  3        
45                                                  3        
46                                                  3        
47                                                  3        
48                                                  3        
49                                                  5        
50                                                  3        
51                                                  3        
52                                                  4        
53                                                  3        
54                                                  3        
55                                                  4        
56                                                  3        
57                                                  3        
58                                                  3        
59                                                  3        
60                                                  3        
61                                                  3        
62                                                  2        
63                                                  3        
64                                                  4        
65                                                  3        
66                                                  3        
67                                                  4        
68                                                  1        
69                                                  4        
70                                                  4        
71                                                  2        
72                                                  2        
73                                                  3        
74                                                  3        
75                                                  2        
76                                                  2        
77                                                  3        
78                                                  3        
79                                                  4        
80                                                  4        
81                                                  3        
82                                                  4        
83                                                  3        
84                                                  4        
85                                                  1        
86                                                  3        
87                                                  2        
88                                                  2        
89                                                  3        
90                                                  4        
91                                                  3        
92                                                  3        
93                                                  3        
94                                                  4        
95                                                  5        
96                                                  3        

   Morningness-Eveningness Questionnaire Revised (MEQ-R).10  \
0   You want to be at your peak performance for a ...         
1                                             meqr_11         
2                                                   4         
3                                                   6         
4                                                   4         
5                                                   6         
6                                                   4         
7                                                   6         
8                                                   6         
9                                                   4         
10                                                  4         
11                                                  4         
12                                                  2         
13                                                  6         
14                                                  4         
15                                                  4         
16                                                  4         
17                                                  4         
18                                                  4         
19                                                  4         
20                                                  6         
21                                                  4         
22                                                  4         
23                                                  4         
24                                                  4         
25                                                  4         
26                                                  4         
27                                                  6         
28                                                  4         
29                                                  4         
30                                                  6         
31                                                  4         
32                                                  6         
33                                                  6         
34                                                  2         
35                                                  4         
36                                                  4         
37                                                  4         
38                                                  4         
39                                                  4         
40                                                  6         
41                                                  6         
42                                                  4         
43                                                  6         
44                                                  6         
45                                                  4         
46                                                  4         
47                                                  4         
48                                                  4         
49                                                  4         
50                                                  4         
51                                                  2         
52                                                  4         
53                                                  4         
54                                                  4         
55                                                  4         
56                                                  4         
57                                                  6         
58                                                  6         
59                                                  2         
60                                                  6         
61                                                  4         
62                                                  6         
63                                                  4         
64                                                  6         
65                                                  2         
66                                                  2         
67                                                  4         
68                                                  2         
69                                                  6         
70                                                  4         
71                                                  4         
72                                                  4         
73                                                  6         
74                                                  6         
75                                                  2         
76                                                  0         
77                                                  4         
78                                                  2         
79                                                  4         
80                                                  4         
81                                                  6         
82                                                  6         
83                                                  6         
84                                                  4         
85                                                  2         
86                                                  4         
87                                                  6         
88                                                  6         
89                                                  6         
90                                                  4         
91                                                  4         
92                                                  4         
93                                                  4         
94                                                  6         
95                                                  6         
96                                                  4         

   Morningness-Eveningness Questionnaire Revised (MEQ-R).11  \
0   If you got into bed at 11 PM (23 h), how tired...         
1                                             meqr_12         
2                                                   5         
3                                                   2         
4                                                   2         
5                                                   2         
6                                                   3         
7                                                   2         
8                                                   3         
9                                                   0         
10                                                  0         
11                                                  3         
12                                                  3         
13                                                  3         
14                                                  2         
15                                                  2         
16                                                  2         
17                                                  2         
18                                                  3         
19                                                  2         
20                                                  0         
21                                                  3         
22                                                  0         
23                                                  0         
24                                                  2         
25                                                  2         
26                                                  2         
27                                                  3         
28                                                  3         
29                                                  2         
30                                                  3         
31                                                  2         
32                                                  3         
33                                                  2         
34                                                  5         
35                                                  0         
36                                                  2         
37                                                  0         
38                                                  3         
39                                                  2         
40                                                  3         
41                                                  0         
42                                                  2         
43                                                  3         
44                                                  3         
45                                                  2         
46                                                  2         
47                                                  3         
48                                                  0         
49                                                  3         
50                                                  2         
51                                                  2         
52                                                  3         
53                                                  2         
54                                                  3         
55                                                  0         
56                                                  0         
57                                                  2         
58                                                  0         
59                                                  3         
60                                                  2         
61                                                  0         
62                                                  0         
63                                                  3         
64                                                  2         
65                                                  2         
66                                                  2         
67                                                  3         
68                                                  0         
69                                                  3         
70                                                  2         
71                                                  2         
72                                                  0         
73                                                  0         
74                                                  2         
75                                                  0         
76                                                  2         
77                                                  2         
78                                                  2         
79                                                  3         
80                                                  3         
81                                                  0         
82                                                  3         
83                                                  0         
84                                                  2         
85                                                  2         
86                                                  2         
87                                                  0         
88                                                  0         
89                                                  2         
90                                                  3         
91                                                  2         
92                                                  2         
93                                                  2         
94                                                  3         
95                                                  2         
96                                                  2         

   Morningness-Eveningness Questionnaire Revised (MEQ-R).12  \
0   For some reason you have gone to bed several h...         
1                                             meqr_13         
2                                                   1         
3                                                   3         
4                                                   2         
5                                                   1         
6                                                   2         
7                                                   3         
8                                                   3         
9                                                   2         
10                                                  1         
11                                                  1         
12                                                  3         
13                                                  3         
14                                                  1         
15                                                  3         
16                                                  1         
17                                                  1         
18                                                  3         
19                                                  2         
20                                                  3         
21                                                  1         
22                                                  2         
23                                                  4         
24                                                  3         
25                                                  4         
26                                                  1         
27                                                  2         
28                                                  1         
29                                                  4         
30                                                  4         
31                                                  1         
32                                                  4         
33                                                  3         
34                                                  1         
35                                                  1         
36                                                  1         
37                                                  3         
38                                                  1         
39                                                  1         
40                                                  2         
41                                                  3         
42                                                  1         
43                                                  1         
44                                                  2         
45                                                  4         
46                                                  2         
47                                                  1         
48                                                  2         
49                                                  3         
50                                                  1         
51                                                  1         
52                                                  2         
53                                                  1         
54                                                  2         
55                                                  2         
56                                                  3         
57                                                  4         
58                                                  2         
59                                                  3         
60                                                  1         
61                                                  2         
62                                                  3         
63                                                  1         
64                                                  1         
65                                                  1         
66                                                  2         
67                                                  1         
68                                                  1         
69                                                  1         
70                                                  3         
71                                                  2         
72                                                  1         
73                                                  4         
74                                                  1         
75                                                  3         
76                                                  3         
77                                                  1         
78                                                  2         
79                                                  2         
80                                                  1         
81                                                  1         
82                                                  4         
83                                                  2         
84                                                  1         
85                                                  2         
86                                                  2         
87                                                  1         
88                                                  4         
89                                                  1         
90                                                  4         
91                                                  2         
92                                                  4         
93                                                  3         
94                                                  2         
95                                                  3         
96                                                  2         

   Morningness-Eveningness Questionnaire Revised (MEQ-R).13  \
0   One night you have to remain awake between 4-6...         
1                                             meqr_14         
2                                                   3         
3                                                   4         
4                                                   1         
5                                                   3         
6                                                   1         
7                                                   4         
8                                                   3         
9                                                   1         
10                                                  1         
11                                                  2         
12                                                  1         
13                                                  3         
14                                                  3         
15                                                  3         
16                                                  3         
17                                                  2         
18                                                  3         
19                                                  2         
20                                                  3         
21                                                  3         
22                                                  2         
23                                                  3         
24                                                  3         
25                                                  1         
26                                                  1         
27                                                  3         
28                                                  3         
29                                                  2         
30                                                  3         
31                                                  4         
32                                                  4         
33                                                  2         
34                                                  2         
35                                                  1         
36                                                  3         
37                                                  4         
38                                                  4         
39                                                  4         
40                                                  2         
41                                                  4         
42                                                  2         
43                                                  1         
44                                                  3         
45                                                  3         
46                                                  3         
47                                                  2         
48                                                  3         
49                                                  3         
50                                                  2         
51                                                  1         
52                                                  3         
53                                                  1         
54                                                  2         
55                                                  3         
56                                                  4         
57                                                  2         
58                                                  2         
59                                                  1         
60                                                  3         
61                                                  2         
62                                                  3         
63                                                  3         
64                                                  3         
65                                                  2         
66                                                  1         
67                                                  4         
68                                                  1         
69                                                  3         
70                                                  3         
71                                                  3         
72                                                  2         
73                                                  3         
74                                                  3         
75                                                  4         
76                                                  1         
77                                                  4         
78                                                  2         
79                                                  3         
80                                                  3         
81                                                  3         
82                                                  3         
83                                                  3         
84                                                  3         
85                                                  1         
86                                                  3         
87                                                  2         
88                                                  2         
89                                                  3         
90                                                  4         
91                                                  3         
92                                                  1         
93                                                  2         
94                                                  3         
95                                                  4         
96                                                  3         

   Morningness-Eveningness Questionnaire Revised (MEQ-R).14  \
0   You have two hours of hard physical work. You ...         
1                                             meqr_15         
2                                                   4         
3                                                   4         
4                                                   2         
5                                                   4         
6                                                   3         
7                                                   2         
8                                                   4         
9                                                   4         
10                                                  3         
11                                                  3         
12                                                  2         
13                                                  4         
14                                                  3         
15                                                  2         
16                                                  3         
17                                                  3         
18                                                  4         
19                                                  4         
20                                                  2         
21                                                  3         
22                                                  2         
23                                                  4         
24                                                  4         
25                                                  3         
26                                                  1         
27                                                  4         
28                                                  3         
29                                                  4         
30                                                  3         
31                                                  3         
32                                                  4         
33                                                  4         
34                                                  2         
35                                                  1         
36                                                  3         
37                                                  4         
38                                                  3         
39                                                  4         
40                                                  3         
41                                                  3         
42                                                  1         
43                                                  4         
44                                                  3         
45                                                  1         
46                                                  1         
47                                                  4         
48                                                  2         
49                                                  4         
50                                                  2         
51                                                  3         
52                                                  3         
53                                                  2         
54                                                  4         
55                                                  3         
56                                                  3         
57                                                  4         
58                                                  3         
59                                                  2         
60                                                  2         
61                                                  4         
62                                                  4         
63                                                  3         
64                                                  2         
65                                                  2         
66                                                  2         
67                                                  3         
68                                                  1         
69                                                  2         
70                                                  4         
71                                                  3         
72                                                  3         
73                                                  4         
74                                                  3         
75                                                  2         
76                                                  1         
77                                                  3         
78                                                  3         
79                                                  4         
80                                                  3         
81                                                  2         
82                                                  3         
83                                                  4         
84                                                  4         
85                                                  3         
86                                                  3         
87                                                  2         
88                                                  4         
89                                                  1         
90                                                  3         
91                                                  3         
92                                                  3         
93                                                  4         
94                                                  4         
95                                                  4         
96                                                  2         

   Morningness-Eveningness Questionnaire Revised (MEQ-R).15  \
0   You have decided to do physical exercise. A fr...         
1                                             meqr_16         
2                                                   4         
3                                                   1         
4                                                   2         
5                                                   3         
6                                                   3         
7                                                   4         
8                                                   1         
9                                                   1         
10                                                  2         
11                                                  2         
12                                                  1         
13                                                  2         
14                                                  1         
15                                                  2         
16                                                  2         
17                                                  1         
18                                                  2         
19                                                  3         
20                                                  3         
21                                                  2         
22                                                  2         
23                                                  4         
24                                                  3         
25                                                  1         
26                                                  3         
27                                                  1         
28                                                  3         
29                                                  3         
30                                                  1         
31                                                  1         
32                                                  2         
33                                                  3         
34                                                  3         
35                                                  2         
36                                                  2         
37                                                  1         
38                                                  1         
39                                                  1         
40                                                  2         
41                                                  4         
42                                                  1         
43                                                  4         
44                                                  2         
45                                                  2         
46                                                  2         
47                                                  3         
48                                                  2         
49                                                  1         
50                                                  2         
51                                                  1         
52                                                  2         
53                                                  2         
54                                                  3         
55                                                  3         
56                                                  2         
57                                                  2         
58                                                  1         
59                                                  2         
60                                                  2         
61                                                  2         
62                                                  1         
63                                                  3         
64                                                  1         
65                                                  2         
66                                                  3         
67                                                  3         
68                                                  1         
69                                                  3         
70                                                  2         
71                                                  1         
72                                                  2         
73                                                  1         
74                                                  1         
75                                                  2         
76                                                  2         
77                                                  2         
78                                                  1         
79                                                  4         
80                                                  3         
81                                                  3         
82                                                  4         
83                                                  2         
84                                                  1         
85                                                  2         
86                                                  2         
87                                                  2         
88                                                  2         
89                                                  1         
90                                                  3         
91                                                  2         
92                                                  2         
93                                                  1         
94                                                  2         
95                                                  2         
96                                                  4         

   Morningness-Eveningness Questionnaire Revised (MEQ-R).16  \
0   Suppose you can choose your own work (school) ...         
1                                             meqr_17         
2                                                   3         
3                                                   4         
4                                                   2         
5                                                   4         
6                                                   3         
7                                                   4         
8                                                   3         
9                                                   3         
10                                                  3         
11                                                  3         
12                                                  2         
13                                                  3         
14                                                  3         
15                                                  3         
16                                                  3         
17                                                  4         
18                                                  4         
19                                                  3         
20                                                  3         
21                                                  3         
22                                                  3         
23                                                  4         
24                                                  4         
25                                                  3         
26                                                  3         
27                                                  4         
28                                                  3         
29                                                  5         
30                                                  4         
31                                                  3         
32                                                  4         
33                                                  4         
34                                                  3         
35                                                  3         
36                                                  4         
37                                                  4         
38                                                  3         
39                                                  4         
40                                                  3         
41                                                  4         
42                                                  3         
43                                                  4         
44                                                  4         
45                                                  4         
46                                                  3         
47                                                  3         
48                                                  3         
49                                                  3         
50                                                  3         
51                                                  4         
52                                                  3         
53                                                  3         
54                                                  3         
55                                                  3         
56                                                  3         
57                                                  3         
58                                                  3         
59                                                  4         
60                                                  2         
61                                                  4         
62                                                  3         
63                                                  3         
64                                                  3         
65                                                  3         
66                                                  3         
67                                                  3         
68                                                  2         
69                                                  4         
70                                                  3         
71                                                  3         
72                                                  2         
73                                                  4         
74                                                  3         
75                                                  3         
76                                                  3         
77                                                  3         
78                                                  4         
79                                                  3         
80                                                  3         
81                                                  4         
82                                                  3         
83                                                  3         
84                                                  3         
85                                                  2         
86                                                  4         
87                                                  3         
88                                                  4         
89                                                  3         
90                                                  3         
91                                                  5         
92                                                  3         
93                                                  4         
94                                                  4         
95                                                  5         
96                                                  3         

   Morningness-Eveningness Questionnaire Revised (MEQ-R).17  \
0   At approximately what time of day do you usual...         
1                                             meqr_18         
2                                                   3         
3                                                   3         
4                                                   2         
5                                                   3         
6                                                   3         
7                                                   3         
8                                                   4         
9                                                   3         
10                                                  3         
11                                                  2         
12                                                  3         
13                                                  3         
14                                                  3         
15                                                  3         
16                                                  3         
17                                                  4         
18                                                  4         
19                                                  3         
20                                                  2         
21                                                  3         
22                                                  2         
23                                                  4         
24                                                  4         
25                                                  3         
26                                                  3         
27                                                  4         
28                                                  3         
29                                                  5         
30                                                  3         
31                                                  3         
32                                                  4         
33                                                  2         
34                                                  3         
35                                                  2         
36                                                  4         
37                                                  3         
38                                                  2         
39                                                  3         
40                                                  4         
41                                                  5         
42                                                  2         
43                                                  2         
44                                                  3         
45                                                  3         
46                                                  3         
47                                                  4         
48                                                  2         
49                                                  3         
50                                                  3         
51                                                  4         
52                                                  3         
53                                                  3         
54                                                  3         
55                                                  2         
56                                                  3         
57                                                  3         
58                                                  3         
59                                                  3         
60                                                  2         
61                                                  2         
62                                                  2         
63                                                  3         
64                                                  3         
65                                                  2         
66                                                  3         
67                                                  3         
68                                                  2         
69                                                  3         
70                                                  2         
71                                                  3         
72                                                  3         
73                                                  4         
74                                                  2         
75                                                  3         
76                                                  2         
77                                                  4         
78                                                  3         
79                                                  3         
80                                                  3         
81                                                  3         
82                                                  3         
83                                                  1         
84                                                  3         
85                                                  2         
86                                                  3         
87                                                  2         
88                                                  4         
89                                                  3         
90                                                  2         
91                                                  2         
92                                                  3         
93                                                  4         
94                                                  4         
95                                                  5         
96                                                  2         

   Morningness-Eveningness Questionnaire Revised (MEQ-R).18  \
0   One hears about morning types and evening type...         
1                                             meqr_19         
2                                                   4         
3                                                   4         
4                                                   1         
5                                                   4         
6                                                   4         
7                                                   4         
8                                                   6         
9                                                   4         
10                                                  2         
11                                                  1         
12                                                  4         
13                                                  4         
14                                                  2         
15                                                  1         
16                                                  1         
17                                                  2         
18                                                  4         
19                                                  1         
20                                                  2         
21                                                  2         
22                                                  2         
23                                                  4         
24                                                  4         
25                                                  1         
26                                                  2         
27                                                  4         
28                                                  1         
29                                                  4         
30                                                  6         
31                                                  2         
32                                                  4         
33                                                  4         
34                                                  1         
35                                                  1         
36                                                  2         
37                                                  2         
38                                                  1         
39                                                  2         
40                                                  2         
41                                                  6         
42                                                  2         
43                                                  2         
44                                                  1         
45                                                  2         
46                                                  2         
47                                                  4         
48                                                  1         
49                                                  4         
50                                                  2         
51                                                  1         
52                                                  1         
53                                                  1         
54                                                  2         
55                                                  1         
56                                                  4         
57                                                  2         
58                                                  1         
59                                                  2         
60                                                  1         
61                                                  1         
62                                                  2         
63                                                  2         
64                                                  2         
65                                                  1         
66                                                  2         
67                                                  2         
68                                                  1         
69                                                  2         
70                                                  2         
71                                                  2         
72                                                  1         
73                                                  2         
74                                                  2         
75                                                  4         
76                                                  1         
77                                                  4         
78                                                  1         
79                                                  4         
80                                                  2         
81                                                  2         
82                                                  4         
83                                                  4         
84                                                  2         
85                                                  1         
86                                                  1         
87                                                  1         
88                                                  4         
89                                                  2         
90                                                  4         
91                                                  2         
92                                                  4         
93                                                  2         
94                                                  6         
95                                                  4         
96                                                  1         

             Perceived Stress Reactivity Scale (PSRS)  \
0   When the tasks and duties build up to the exte...   
1                                              psrs_1   
2                                                   1   
3                                                   1   
4                                                   0   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  0   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  2   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  0   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  2   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  0   
94                                                  1   
95                                                  1   
96                                                  2   

           Perceived Stress Reactivity Scale (PSRS).1  \
0   When I want to relax after a hard day at work ...   
1                                              psrs_2   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  0   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  2   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  0   
31                                                  0   
32                                                  1   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  0   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  0   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  1   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  2   
60                                                  0   
61                                                  0   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  1   
79                                                  1   
80                                                  2   
81                                                  2   
82                                                  2   
83                                                  1   
84                                                  2   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  2   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  2   
93                                                  2   
94                                                  1   
95                                                  2   
96                                                  0   

           Perceived Stress Reactivity Scale (PSRS).2  \
0   When I have conflicts with others that may not...   
1                                              psrs_3   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   1   
6                                                   2   
7                                                   2   
8                                                   2   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  2   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  2   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  2   
44                                                  0   
45                                                  1   
46                                                  2   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  1   
57                                                  1   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  2   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  0   
72                                                  1   
73                                                  2   
74                                                  0   
75                                                  1   
76                                                  1   
77                                                  2   
78                                                  0   
79                                                  1   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  0   
86                                                  1   
87                                                  2   
88                                                  1   
89                                                  2   
90                                                  2   
91                                                  2   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  2   

           Perceived Stress Reactivity Scale (PSRS).3  \
0   When I make a mistake (0=In general, I remain ...   
1                                              psrs_4   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  0   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  1   
28                                                  1   
29                                                  0   
30                                                  1   
31                                                  2   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  0   
38                                                  1   
39                                                  0   
40                                                  1   
41                                                  1   
42                                                  1   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  1   
47                                                  1   
48                                                  2   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  0   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  0   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  1   
78                                                  0   
79                                                  2   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  0   
87                                                  1   
88                                                  2   
89                                                  1   
90                                                  0   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  1   

           Perceived Stress Reactivity Scale (PSRS).4  \
0   When I'm wrongly criticized by others (0=I am ...   
1                                              psrs_5   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  1   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  2   
28                                                  2   
29                                                  1   
30                                                  2   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  0   
66                                                  1   
67                                                  0   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  0   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  0   
77                                                  0   
78                                                  1   
79                                                  1   
80                                                  0   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  0   

           Perceived Stress Reactivity Scale (PSRS).5  \
0   When I argue with other people (0= I usually c...   
1                                              psrs_6   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   2   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  0   
23                                                  1   
24                                                  0   
25                                                  1   
26                                                  1   
27                                                  0   
28                                                  1   
29                                                  1   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  1   
46                                                  0   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  1   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  1   
59                                                  0   
60                                                  1   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  1   
66                                                  0   
67                                                  1   
68                                                  0   
69                                                  1   
70                                                  0   
71                                                  1   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  1   
78                                                  0   
79                                                  0   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  1   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  2   
90                                                  1   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  1   

           Perceived Stress Reactivity Scale (PSRS).6  \
0   When I have little time for a job to be done (...   
1                                              psrs_7   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  2   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  0   
25                                                  2   
26                                                  0   
27                                                  0   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  2   
32                                                  0   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  1   
38                                                  2   
39                                                  1   
40                                                  1   
41                                                  1   
42                                                  0   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  0   
51                                                  1   
52                                                  1   
53                                                  0   
54                                                  2   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  1   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  1   
70                                                  0   
71                                                  0   
72                                                  1   
73                                                  1   
74                                                  0   
75                                                  2   
76                                                  0   
77                                                  2   
78                                                  2   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  1   

           Perceived Stress Reactivity Scale (PSRS).7  \
0   When I make a mistake (0=I am normally annoyed...   
1                                              psrs_8   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   2   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  1   
28                                                  1   
29                                                  0   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  0   
37                                                  0   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  2   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  0   
53                                                  2   
54                                                  0   
55                                                  0   
56                                                  1   
57                                                  1   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  1   
69                                                  1   
70                                                  2   
71                                                  1   
72                                                  2   
73                                                  2   
74                                                  2   
75                                                  1   
76                                                  2   
77                                                  1   
78                                                  2   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  2   
83                                                  2   
84                                                  1   
85                                                  1   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  0   
90                                                  2   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  2   
96                                                  1   

           Perceived Stress Reactivity Scale (PSRS).8  \
0   When I am unsure what to do or say in a social...   
1                                              psrs_9   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   1   
8                                                   2   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  0   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  2   
34                                                  0   
35                                                  1   
36                                                  2   
37                                                  0   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  2   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  0   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  2   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  1   

           Perceived Stress Reactivity Scale (PSRS).9  \
0   When I have spare time after working or studyi...   
1                                             psrs_10   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  1   
30                                                  2   
31                                                  0   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  0   
36                                                  1   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  2   
48                                                  0   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  1   
53                                                  0   
54                                                  0   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  1   
66                                                  2   
67                                                  1   
68                                                  2   
69                                                  1   
70                                                  2   
71                                                  2   
72                                                  2   
73                                                  2   
74                                                  2   
75                                                  2   
76                                                  2   
77                                                  2   
78                                                  1   
79                                                  1   
80                                                  2   
81                                                  2   
82                                                  2   
83                                                  2   
84                                                  2   
85                                                  2   
86                                                  1   
87                                                  2   
88                                                  2   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  2   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  0   

          Perceived Stress Reactivity Scale (PSRS).10  \
0   When I am criticized by others (0= Important a...   
1                                             psrs_11   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   1   
6                                                   0   
7                                                   1   
8                                                   2   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  0   
19                                                  2   
20                                                  1   
21                                                  0   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  0   
26                                                  0   
27                                                  2   
28                                                  2   
29                                                  0   
30                                                  1   
31                                                  2   
32                                                  2   
33                                                  1   
34                                                  0   
35                                                  2   
36                                                  1   
37                                                  2   
38                                                  1   
39                                                  2   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  2   
45                                                  0   
46                                                  0   
47                                                  2   
48                                                  1   
49                                                  0   
50                                                  2   
51                                                  2   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  2   
62                                                  0   
63                                                  0   
64                                                  2   
65                                                  1   
66                                                  0   
67                                                  0   
68                                                  2   
69                                                  0   
70                                                  2   
71                                                  2   
72                                                  2   
73                                                  0   
74                                                  2   
75                                                  1   
76                                                  2   
77                                                  0   
78                                                  2   
79                                                  0   
80                                                  0   
81                                                  2   
82                                                  2   
83                                                  0   
84                                                  1   
85                                                  2   
86                                                  2   
87                                                  1   
88                                                  2   
89                                                  2   
90                                                  2   
91                                                  0   
92                                                  1   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  0   

          Perceived Stress Reactivity Scale (PSRS).11  \
0   When something does not go the way I expected ...   
1                                             psrs_12   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  1   
28                                                  0   
29                                                  1   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  0   
35                                                  2   
36                                                  0   
37                                                  2   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  1   
44                                                  2   
45                                                  1   
46                                                  1   
47                                                  0   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  0   
68                                                  1   
69                                                  1   
70                                                  0   
71                                                  1   
72                                                  1   
73                                                  0   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  0   
83                                                  0   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  1   

          Perceived Stress Reactivity Scale (PSRS).12  \
0   When I do not attain a goal (0=I usually remai...   
1                                             psrs_13   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  2   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  0   
40                                                  1   
41                                                  1   
42                                                  0   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  0   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  1   

          Perceived Stress Reactivity Scale (PSRS).13  \
0   When others criticize me (0=I generally don't ...   
1                                             psrs_14   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  2   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  2   
45                                                  0   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  0   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  1   
70                                                  0   
71                                                  0   
72                                                  2   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  0   
79                                                  2   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  0   
86                                                  1   
87                                                  1   
88                                                  2   
89                                                  1   
90                                                  0   
91                                                  1   
92                                                  0   
93                                                  2   
94                                                  2   
95                                                  1   
96                                                  2   

          Perceived Stress Reactivity Scale (PSRS).14  \
0   When I fail at something (0=I usually find it ...   
1                                             psrs_15   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  0   
16                                                  1   
17                                                  0   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  2   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  0   
61                                                  1   
62                                                  0   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  1   
71                                                  1   
72                                                  0   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  0   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  0   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  0   

          Perceived Stress Reactivity Scale (PSRS).15  \
0   When there are too many demands on me at the s...   
1                                             psrs_16   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   1   
7                                                   1   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  1   
29                                                  1   
30                                                  2   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  0   
35                                                  1   
36                                                  2   
37                                                  1   
38                                                  1   
39                                                  2   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  1   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  0   
64                                                  2   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  0   
71                                                  0   
72                                                  1   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  2   
78                                                  2   
79                                                  2   
80                                                  1   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  0   
94                                                  1   
95                                                  0   
96                                                  1   

          Perceived Stress Reactivity Scale (PSRS).16  \
0   When others say something incorrect about me (...   
1                                             psrs_17   
2                                                   0   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   0   
8                                                   1   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  2   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  0   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  0   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  2   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  0   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  0   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  0   
61                                                  2   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  0   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  1   
77                                                  0   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  0   
86                                                  2   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  2   
96                                                  0   

          Perceived Stress Reactivity Scale (PSRS).17  \
0   When I fail at a task (0= I usually  feel very...   
1                                             psrs_18   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  1   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  2   
38                                                  1   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  0   
61                                                  1   
62                                                  0   
63                                                  1   
64                                                  1   
65                                                  0   
66                                                  1   
67                                                  1   
68                                                  0   
69                                                  0   
70                                                  1   
71                                                  1   
72                                                  0   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  2   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  0   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  0   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  1   

          Perceived Stress Reactivity Scale (PSRS).18  \
0   When I argue with others (0=I usually get very...   
1                                             psrs_19   
2                                                   0   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   0   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  0   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  0   
25                                                  1   
26                                                  1   
27                                                  0   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  0   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  2   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  0   
51                                                  1   
52                                                  1   
53                                                  0   
54                                                  2   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  0   
64                                                  1   
65                                                  0   
66                                                  1   
67                                                  0   
68                                                  1   
69                                                  0   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  0   
85                                                  1   
86                                                  1   
87                                                  2   
88                                                  2   
89                                                  0   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  2   
96                                                  1   

          Perceived Stress Reactivity Scale (PSRS).19  \
0   When I am under stress (0=I usually can't enjo...   
1                                             psrs_20   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  1   
29                                                  2   
30                                                  0   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  0   
35                                                  1   
36                                                  0   
37                                                  1   
38                                                  1   
39                                                  2   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  0   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  0   
59                                                  0   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  2   
65                                                  1   
66                                                  1   
67                                                  0   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  0   
72                                                  2   
73                                                  1   
74                                                  2   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  2   
79                                                  1   
80                                                  1   
81                                                  2   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  0   
88                                                  1   
89                                                  0   
90                                                  1   
91                                                  0   
92                                                  2   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  1   

          Perceived Stress Reactivity Scale (PSRS).20  \
0   When tasks and duties accumulate to the extent...   
1                                             psrs_21   
2                                                   1   
3                                                   0   
4                                                   2   
5                                                   0   
6                                                   2   
7                                                   1   
8                                                   0   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  2   
16                                                  0   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  2   
26                                                  1   
27                                                  0   
28                                                  0   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  0   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  2   
64                                                  2   
65                                                  1   
66                                                  2   
67                                                  1   
68                                                  2   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  1   
87                                                  2   
88                                                  0   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  2   
96                                                  2   

          Perceived Stress Reactivity Scale (PSRS).21  \
0   When I have to speak in front of other people ...   
1                                             psrs_22   
2                                                   0   
3                                                   1   
4                                                   0   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   2   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  1   
27                                                  0   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  2   
34                                                  0   
35                                                  1   
36                                                  2   
37                                                  1   
38                                                  1   
39                                                  2   
40                                                  1   
41                                                  0   
42                                                  2   
43                                                  1   
44                                                  0   
45                                                  1   
46                                                  0   
47                                                  1   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  2   
54                                                  0   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                  0   
59                                                  2   
60                                                  0   
61                                                  2   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  0   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  2   
75                                                  0   
76                                                  1   
77                                                  1   
78                                                  2   
79                                                  0   
80                                                  0   
81                                                  1   
82                                                  2   
83                                                  0   
84                                                  1   
85                                                  0   
86                                                  1   
87                                                  1   
88                                                  2   
89                                                  1   
90                                                  0   
91                                                  1   
92                                                  0   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  1   

          Perceived Stress Reactivity Scale (PSRS).22  \
0   When I have many tasks and duties to fulfill (...   
1                                             psrs_23   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   1   
7                                                   0   
8                                                   2   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  0   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  2   
23                                                  1   
24                                                  0   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  2   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  0   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  2   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  2   
69                                                  1   
70                                                  0   
71                                                  0   
72                                                  1   
73                                                  0   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  2   
81                                                  0   
82                                                  0   
83                                                  1   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  0   
96                                                  2   

                         Perceived Stress Scale (PSS)  \
0   In the last month, how often have you been ups...   
1                                               pss_1   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   3   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  1   
22                                                  1   
23                                                  2   
24                                                  2   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  2   
30                                                  2   
31                                                  4   
32                                                  0   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  0   
40                                                  1   
41                                                  1   
42                                                  3   
43                                                  2   
44                                                  0   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  2   
52                                                  0   
53                                                  2   
54                                                  2   
55                                                  2   
56                                                  2   
57                                                  0   
58                                                  1   
59                                                  2   
60                                                  2   
61                                                  1   
62                                                  2   
63                                                  2   
64                                                  2   
65                                                  2   
66                                                  2   
67                                                  1   
68                                                  3   
69                                                  1   
70                                                  1   
71                                                  2   
72                                                  1   
73                                                  2   
74                                                  1   
75                                                  2   
76                                                  0   
77                                                  2   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  2   
86                                                  1   
87                                                  2   
88                                                  3   
89                                                  2   
90                                                  1   
91                                                  2   
92                                                  2   
93                                                  0   
94                                                  1   
95                                                  2   
96                                                  3   

                       Perceived Stress Scale (PSS).1  \
0   In the last month, how often have you felt tha...   
1                                               pss_2   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   3   
7                                                   1   
8                                                   3   
9                                                   0   
10                                                  1   
11                                                  2   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  0   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  0   
31                                                  3   
32                                                  0   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  2   
37                                                  3   
38                                                  2   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  3   
43                                                  1   
44                                                  0   
45                                                  0   
46                                                  3   
47                                                  2   
48                                                  1   
49                                                  0   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  3   
60                                                  1   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  2   
68                                                  2   
69                                                  2   
70                                                  1   
71                                                  1   
72                                                  2   
73                                                  3   
74                                                  0   
75                                                  3   
76                                                  0   
77                                                  1   
78                                                  0   
79                                                  3   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  3   
85                                                  0   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  2   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  0   
94                                                  1   
95                                                  0   
96                                                  3   

                       Perceived Stress Scale (PSS).2  \
0   In the last month, how often have you felt ner...   
1                                               pss_3   
2                                                   2   
3                                                   2   
4                                                   1   
5                                                   1   
6                                                   4   
7                                                   2   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  2   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  3   
16                                                  2   
17                                                  1   
18                                                  2   
19                                                  2   
20                                                  0   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  3   
25                                                  4   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  3   
30                                                  1   
31                                                  3   
32                                                  1   
33                                                  3   
34                                                  1   
35                                                  4   
36                                                  2   
37                                                  3   
38                                                  3   
39                                                  1   
40                                                  1   
41                                                  0   
42                                                  2   
43                                                  3   
44                                                  2   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  2   
50                                                  2   
51                                                  1   
52                                                  4   
53                                                  2   
54                                                  3   
55                                                  3   
56                                                  2   
57                                                  0   
58                                                  1   
59                                                  4   
60                                                  2   
61                                                  3   
62                                                  2   
63                                                  3   
64                                                  2   
65                                                  3   
66                                                  2   
67                                                  3   
68                                                  3   
69                                                  2   
70                                                  1   
71                                                  3   
72                                                  1   
73                                                  2   
74                                                  2   
75                                                  3   
76                                                  0   
77                                                  3   
78                                                  2   
79                                                  2   
80                                                  3   
81                                                  2   
82                                                  2   
83                                                  2   
84                                                  3   
85                                                  3   
86                                                  2   
87                                                  3   
88                                                  2   
89                                                  3   
90                                                  2   
91                                                  2   
92                                                  1   
93                                                  3   
94                                                  1   
95                                                  2   
96                                                  2   

                       Perceived Stress Scale (PSS).3  \
0   In the last month, how often have you felt con...   
1                                               pss_4   
2                                                   0   
3                                                   3   
4                                                   1   
5                                                   0   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  0   
16                                                  1   
17                                                  0   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  0   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  2   
32                                                  0   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  2   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  3   
46                                                  0   
47                                                  1   
48                                                  2   
49                                                  0   
50                                                  2   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  0   
55                                                  1   
56                                                  2   
57                                                  1   
58                                                  0   
59                                                  2   
60                                                  2   
61                                                  1   
62                                                  0   
63                                                  1   
64                                                  0   
65                                                  2   
66                                                  3   
67                                                  2   
68                                                  2   
69                                                  3   
70                                                  1   
71                                                  3   
72                                                  3   
73                                                  3   
74                                                  4   
75                                                  2   
76                                                  3   
77                                                  2   
78                                                  4   
79                                                  3   
80                                                  3   
81                                                  3   
82                                                  4   
83                                                  2   
84                                                  3   
85                                                  0   
86                                                  1   
87                                                  1   
88                                                  4   
89                                                  3   
90                                                  3   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  1   

                       Perceived Stress Scale (PSS).4  \
0   In the last month, how often have you felt tha...   
1                                               pss_5   
2                                                   3   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   0   
10                                                  2   
11                                                  2   
12                                                  2   
13                                                  1   
14                                                  0   
15                                                  2   
16                                                  2   
17                                                  2   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  2   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  3   
26                                                  0   
27                                                  0   
28                                                  1   
29                                                  1   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  3   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  3   
38                                                  1   
39                                                  2   
40                                                  2   
41                                                  2   
42                                                  3   
43                                                  3   
44                                                  1   
45                                                  0   
46                                                  0   
47                                                  2   
48                                                  2   
49                                                  0   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  0   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  1   
59                                                  2   
60                                                  3   
61                                                  2   
62                                                  1   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  2   
67                                                  2   
68                                                  2   
69                                                  3   
70                                                  3   
71                                                  3   
72                                                  3   
73                                                  2   
74                                                  3   
75                                                  3   
76                                                  2   
77                                                  2   
78                                                  3   
79                                                  2   
80                                                  3   
81                                                  4   
82                                                  4   
83                                                  2   
84                                                  3   
85                                                  3   
86                                                  3   
87                                                  2   
88                                                  1   
89                                                  4   
90                                                  3   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  3   
96                                                  2   

                       Perceived Stress Scale (PSS).5  \
0   In the last month, how often have you found th...   
1                                               pss_6   
2                                                   4   
3                                                   1   
4                                                   2   
5                                                   0   
6                                                   1   
7                                                   1   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  2   
16                                                  2   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  2   
21                                                  0   
22                                                  1   
23                                                  1   
24                                                  2   
25                                                  4   
26                                                  1   
27                                                  0   
28                                                  2   
29                                                  2   
30                                                  1   
31                                                  2   
32                                                  0   
33                                                  2   
34                                                  2   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  1   
41                                                  0   
42                                                  0   
43                                                  2   
44                                                  1   
45                                                  2   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  2   
51                                                  1   
52                                                  2   
53                                                  0   
54                                                  1   
55                                                  4   
56                                                  1   
57                                                  0   
58                                                  1   
59                                                  3   
60                                                  2   
61                                                  2   
62                                                  0   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  3   
69                                                  2   
70                                                  1   
71                                                  1   
72                                                  2   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  2   
79                                                  1   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  2   
84                                                  2   
85                                                  2   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  2   
95                                                  0   
96                                                  4   

                       Perceived Stress Scale (PSS).6  \
0   In the last month, how often have you been abl...   
1                                               pss_7   
2                                                   0   
3                                                   0   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  2   
16                                                  1   
17                                                  0   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  0   
26                                                  0   
27                                                  1   
28                                                  1   
29                                                  3   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  2   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  3   
38                                                  2   
39                                                  2   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  1   
44                                                  4   
45                                                  0   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  0   
55                                                  3   
56                                                  3   
57                                                  1   
58                                                  0   
59                                                  1   
60                                                  2   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  3   
66                                                  3   
67                                                  3   
68                                                  3   
69                                                  3   
70                                                  3   
71                                                  3   
72                                                  3   
73                                                  3   
74                                                  3   
75                                                  3   
76                                                  2   
77                                                  2   
78                                                  4   
79                                                  2   
80                                                  3   
81                                                  3   
82                                                  3   
83                                                  2   
84                                                  2   
85                                                  4   
86                                                  1   
87                                                  3   
88                                                  1   
89                                                  3   
90                                                  3   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  3   

                       Perceived Stress Scale (PSS).7  \
0   In the last month, how often have you felt tha...   
1                                               pss_8   
2                                                   0   
3                                                   0   
4                                                   2   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   3   
9                                                   0   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  2   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  2   
25                                                  2   
26                                                  1   
27                                                  0   
28                                                  2   
29                                                  0   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  1   
37                                                  2   
38                                                  2   
39                                                  1   
40                                                  3   
41                                                  1   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  1   
49                                                  0   
50                                                  2   
51                                                  0   
52                                                  3   
53                                                  0   
54                                                  0   
55                                                  2   
56                                                  2   
57                                                  2   
58                                                  0   
59                                                  2   
60                                                  3   
61                                                  2   
62                                                  0   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                  2   
67                                                  3   
68                                                  3   
69                                                  2   
70                                                  3   
71                                                  3   
72                                                  2   
73                                                  4   
74                                                  3   
75                                                  3   
76                                                  4   
77                                                  2   
78                                                  2   
79                                                  2   
80                                                  2   
81                                                  3   
82                                                  3   
83                                                  1   
84                                                  3   
85                                                  2   
86                                                  3   
87                                                  3   
88                                                  2   
89                                                  2   
90                                                  3   
91                                                  2   
92                                                  1   
93                                                  3   
94                                                  3   
95                                                  4   
96                                                  1   

                       Perceived Stress Scale (PSS).8  \
0   In the last month, how often have you been ang...   
1                                               pss_9   
2                                                   1   
3                                                   0   
4                                                   1   
5                                                   0   
6                                                   2   
7                                                   1   
8                                                   2   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  0   
26                                                  1   
27                                                  1   
28                                                  2   
29                                                  0   
30                                                  1   
31                                                  2   
32                                                  1   
33                                                  3   
34                                                  2   
35                                                  3   
36                                                  2   
37                                                  3   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  1   
42                                                  2   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  2   
48                                                  1   
49                                                  0   
50                                                  1   
51                                                  2   
52                                                  1   
53                                                  1   
54                                                  2   
55                                                  2   
56                                                  1   
57                                                  0   
58                                                  0   
59                                                  4   
60                                                  2   
61                                                  1   
62                                                  2   
63                                                  2   
64                                                  3   
65                                                  3   
66                                                  2   
67                                                  1   
68                                                  1   
69                                                  2   
70                                                  1   
71                                                  2   
72                                                  2   
73                                                  2   
74                                                  2   
75                                                  3   
76                                                  3   
77                                                  2   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  0   
82                                                  2   
83                                                  1   
84                                                  2   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  2   
89                                                  3   
90                                                  2   
91                                                  3   
92                                                  2   
93                                                  2   
94                                                  1   
95                                                  1   
96                                                  4   

                       Perceived Stress Scale (PSS).9  \
0   In the last month, how often have you felt dif...   
1                                              pss_10   
2                                                   1   
3                                                   1   
4                                                   2   
5                                                   0   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   0   
10                                                  1   
11                                                  1   
12                                                  1   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  1   
17                                                  2   
18                                                  2   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  2   
23                                                  1   
24                                                  1   
25                                                  3   
26                                                  1   
27                                                  0   
28                                                  1   
29                                                  2   
30                                                  1   
31                                                  1   
32                                                  0   
33                                                  2   
34                                                  1   
35                                                  2   
36                                                  2   
37                                                  1   
38                                                  2   
39                                                  0   
40                                                  0   
41                                                  2   
42                                                  1   
43                                                  3   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  3   
48                                                  2   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  2   
53                                                  1   
54                                                  1   
55                                                  4   
56                                                  2   
57                                                  0   
58                                                  1   
59                                                  2   
60                                                  3   
61                                                  2   
62                                                  0   
63                                                  1   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  1   
68                                                  2   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  2   
76                                                  1   
77                                                  3   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  2   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  2   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  2   
94                                                  1   
95                                                  0   
96                                                  3   

                Adolescent Sleep Hygiene Scale (ASHS)  \
0   After 6:00 pm, I have drinks with caffeine (fo...   
1                                              ashs_1   
2                                                   6   
3                                                   5   
4                                                   4   
5                                                   5   
6                                                   5   
7                                                   6   
8                                                   5   
9                                                   2   
10                                                  4   
11                                                  5   
12                                                  5   
13                                                  5   
14                                                  5   
15                                                  6   
16                                                  5   
17                                                  4   
18                                                  5   
19                                                  6   
20                                                  6   
21                                                  5   
22                                                  2   
23                                                  5   
24                                                  5   
25                                                  6   
26                                                  6   
27                                                  5   
28                                                  5   
29                                                  6   
30                                                  6   
31                                                  6   
32                                                  5   
33                                                  4   
34                                                  5   
35                                                  5   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  5   
40                                                  6   
41                                                  4   
42                                                  2   
43                                                  5   
44                                                  6   
45                                                  6   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  5   
52                                                  6   
53                                                  5   
54                                                  6   
55                                                  4   
56                                                  6   
57                                                  6   
58                                                  5   
59                                                  2   
60                                                  3   
61                                                  5   
62                                                  6   
63                                                  5   
64                                                  6   
65                                                  6   
66                                                  5   
67                                                  5   
68                                                  3   
69                                                  6   
70                                                  6   
71                                                  5   
72                                                  5   
73                                                  6   
74                                                  4   
75                                                  6   
76                                                  4   
77                                                  5   
78                                                  5   
79                                                  5   
80                                                  6   
81                                                  6   
82                                                  5   
83                                                  6   
84                                                  6   
85                                                  6   
86                                                  6   
87                                                  5   
88                                                  4   
89                                                  5   
90                                                  6   
91                                                  5   
92                                                  3   
93                                                  5   
94                                                  6   
95                                                  6   
96                                                  6   

              Adolescent Sleep Hygiene Scale (ASHS).1  \
0   During the 1 hour before bedtime, I am very ac...   
1                                              ashs_2   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   6   
6                                                   5   
7                                                   6   
8                                                   4   
9                                                   5   
10                                                  3   
11                                                  6   
12                                                  4   
13                                                  5   
14                                                  4   
15                                                  5   
16                                                  3   
17                                                  6   
18                                                  6   
19                                                  6   
20                                                  6   
21                                                  5   
22                                                  4   
23                                                  6   
24                                                  5   
25                                                  6   
26                                                  6   
27                                                  5   
28                                                  6   
29                                                  6   
30                                                  5   
31                                                  6   
32                                                  5   
33                                                  5   
34                                                  6   
35                                                  6   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  6   
40                                                  5   
41                                                  6   
42                                                  4   
43                                                  6   
44                                                  5   
45                                                  6   
46                                                  5   
47                                                  6   
48                                                  6   
49                                                  5   
50                                                  6   
51                                                  6   
52                                                  6   
53                                                  5   
54                                                  6   
55                                                  5   
56                                                  6   
57                                                  6   
58                                                  6   
59                                                  4   
60                                                  6   
61                                                  6   
62                                                  2   
63                                                  6   
64                                                  6   
65                                                  6   
66                                                  6   
67                                                  6   
68                                                  3   
69                                                  3   
70                                                  5   
71                                                  4   
72                                                  6   
73                                                  6   
74                                                  5   
75                                                  5   
76                                                  6   
77                                                  4   
78                                                  6   
79                                                  4   
80                                                  6   
81                                                  6   
82                                                  6   
83                                                  6   
84                                                  6   
85                                                  3   
86                                                  6   
87                                                  4   
88                                                  6   
89                                                  4   
90                                                  6   
91                                                  3   
92                                                  6   
93                                                  4   
94                                                  5   
95                                                  6   
96                                                  6   

              Adolescent Sleep Hygiene Scale (ASHS).2  \
0   During the 1 hour before bedtime, I drink >4 g...   
1                                              ashs_3   
2                                                   6   
3                                                   6   
4                                                   4   
5                                                   2   
6                                                   4   
7                                                   5   
8                                                   2   
9                                                   5   
10                                                  4   
11                                                  5   
12                                                  3   
13                                                  4   
14                                                  6   
15                                                  3   
16                                                  6   
17                                                  6   
18                                                  6   
19                                                  6   
20                                                  3   
21                                                  6   
22                                                  4   
23                                                  4   
24                                                  6   
25                                                  5   
26                                                  6   
27                                                  6   
28                                                  4   
29                                                  6   
30                                                  6   
31                                                  6   
32                                                  6   
33                                                  4   
34                                                  5   
35                                                  5   
36                                                  5   
37                                                  6   
38                                                  3   
39                                                  5   
40                                                  5   
41                                                  3   
42                                                  2   
43                                                  5   
44                                                  6   
45                                                  4   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  2   
52                                                  2   
53                                                  6   
54                                                  4   
55                                                  6   
56                                                  6   
57                                                  3   
58                                                  6   
59                                                  3   
60                                                  6   
61                                                  5   
62                                                  4   
63                                                  5   
64                                                  5   
65                                                  6   
66                                                  6   
67                                                  6   
68                                                  3   
69                                                  5   
70                                                  6   
71                                                  5   
72                                                  5   
73                                                  6   
74                                                  4   
75                                                  5   
76                                                  4   
77                                                  2   
78                                                  4   
79                                                  6   
80                                                  6   
81                                                  6   
82                                                  6   
83                                                  6   
84                                                  5   
85                                                  5   
86                                                  2   
87                                                  3   
88                                                  6   
89                                                  4   
90                                                  6   
91                                                  4   
92                                                  4   
93                                                  1   
94                                                  5   
95                                                  6   
96                                                  6   

              Adolescent Sleep Hygiene Scale (ASHS).3  \
0   I go to bed with a stomachache (1=Always\n2=Fr...   
1                                              ashs_4   
2                                                   6   
3                                                   5   
4                                                   5   
5                                                   5   
6                                                   4   
7                                                   5   
8                                                   2   
9                                                   6   
10                                                  5   
11                                                  6   
12                                                  6   
13                                                  4   
14                                                  6   
15                                                  5   
16                                                  6   
17                                                  6   
18                                                  6   
19                                                  6   
20                                                  6   
21                                                  6   
22                                                  5   
23                                                  5   
24                                                  4   
25                                                  5   
26                                                  6   
27                                                  6   
28                                                  5   
29                                                  6   
30                                                  6   
31                                                  6   
32                                                  6   
33                                                  5   
34                                                  5   
35                                                  4   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  4   
40                                                  5   
41                                                  6   
42                                                  6   
43                                                  5   
44                                                  5   
45                                                  6   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  6   
52                                                  6   
53                                                  4   
54                                                  6   
55                                                  6   
56                                                  6   
57                                                  6   
58                                                  6   
59                                                  6   
60                                                  6   
61                                                  5   
62                                                  4   
63                                                  6   
64                                                  5   
65                                                  6   
66                                                  6   
67                                                  6   
68                                                  5   
69                                                  4   
70                                                  6   
71                                                  5   
72                                                  5   
73                                                  6   
74                                                  6   
75                                                  5   
76                                                  6   
77                                                  5   
78                                                  4   
79                                                  4   
80                                                  5   
81                                                  6   
82                                                  6   
83                                                  4   
84                                                  5   
85                                                  6   
86                                                  6   
87                                                  5   
88                                                  6   
89                                                  4   
90                                                  6   
91                                                  5   
92                                                  6   
93                                                  3   
94                                                  6   
95                                                  5   
96                                                  6   

              Adolescent Sleep Hygiene Scale (ASHS).4  \
0   I go to bed feeling hungry. (1=Always\n2=Frequ...   
1                                              ashs_5   
2                                                   5   
3                                                   6   
4                                                   6   
5                                                   4   
6                                                   4   
7                                                   6   
8                                                   5   
9                                                   6   
10                                                  5   
11                                                  5   
12                                                  5   
13                                                  4   
14                                                  6   
15                                                  3   
16                                                  6   
17                                                  4   
18                                                  6   
19                                                  6   
20                                                  6   
21                                                  6   
22                                                  5   
23                                                  6   
24                                                  5   
25                                                  5   
26                                                  4   
27                                                  5   
28                                                  4   
29                                                  6   
30                                                  3   
31                                                  4   
32                                                  6   
33                                                  5   
34                                                  4   
35                                                  4   
36                                                  5   
37                                                  5   
38                                                  5   
39                                                  4   
40                                                  4   
41                                                  5   
42                                                  3   
43                                                  5   
44                                                  5   
45                                                  6   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  6   
50                                                  5   
51                                                  6   
52                                                  6   
53                                                  4   
54                                                  4   
55                                                  6   
56                                                  5   
57                                                  5   
58                                                  5   
59                                                  5   
60                                                  4   
61                                                  6   
62                                                  5   
63                                                  6   
64                                                  6   
65                                                  4   
66                                                  5   
67                                                  6   
68                                                  4   
69                                                  5   
70                                                  6   
71                                                  6   
72                                                  5   
73                                                  6   
74                                                  6   
75                                                  4   
76                                                  5   
77                                                  4   
78                                                  6   
79                                                  3   
80                                                  6   
81                                                  6   
82                                                  6   
83                                                  4   
84                                                  3   
85                                                  6   
86                                                  5   
87                                                  6   
88                                                  6   
89                                                  4   
90                                                  6   
91                                                  4   
92                                                  6   
93                                                  6   
94                                                  4   
95                                                  6   
96                                                  6   

              Adolescent Sleep Hygiene Scale (ASHS).5  \
0   During the 1 hour before bedtime, I do things ...   
1                                              ashs_6   
2                                                   6   
3                                                   5   
4                                                   6   
5                                                   4   
6                                                   2   
7                                                   5   
8                                                   2   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  2   
13                                                  1   
14                                                  6   
15                                                  3   
16                                                  2   
17                                                  2   
18                                                  3   
19                                                  5   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  3   
24                                                  3   
25                                                  3   
26                                                  4   
27                                                  5   
28                                                  4   
29                                                  4   
30                                                  4   
31                                                  2   
32                                                  4   
33                                                  5   
34                                                  5   
35                                                  1   
36                                                  6   
37                                                  4   
38                                                  3   
39                                                  4   
40                                                  5   
41                                                  5   
42                                                  1   
43                                                  3   
44                                                  6   
45                                                  6   
46                                                  6   
47                                                  2   
48                                                  2   
49                                                  4   
50                                                  5   
51                                                  2   
52                                                  3   
53                                                  2   
54                                                  5   
55                                                  2   
56                                                  5   
57                                                  4   
58                                                  4   
59                                                  3   
60                                                  5   
61                                                  3   
62                                                  5   
63                                                  4   
64                                                  5   
65                                                  1   
66                                                  2   
67                                                  1   
68                                                  3   
69                                                  4   
70                                                  4   
71                                                  6   
72                                                  2   
73                                                  4   
74                                                  2   
75                                                  2   
76                                                  3   
77                                                  4   
78                                                  2   
79                                                  2   
80                                                  4   
81                                                  5   
82                                                  6   
83                                                  3   
84                                                  1   
85                                                  1   
86                                                  3   
87                                                  2   
88                                                  6   
89                                                  1   
90                                                  4   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  4   
95                                                  1   
96                                                  4   

              Adolescent Sleep Hygiene Scale (ASHS).6  \
0    I go to bed and do things in my bed that keep...   
1                                              ashs_7   
2                                                   6   
3                                                   4   
4                                                   6   
5                                                   3   
6                                                   3   
7                                                   2   
8                                                   3   
9                                                   4   
10                                                  3   
11                                                  3   
12                                                  5   
13                                                  1   
14                                                  6   
15                                                  1   
16                                                  5   
17                                                  2   
18                                                  3   
19                                                  4   
20                                                  2   
21                                                  3   
22                                                  3   
23                                                  3   
24                                                  3   
25                                                  5   
26                                                  2   
27                                                  4   
28                                                  5   
29                                                  4   
30                                                  2   
31                                                  3   
32                                                  4   
33                                                  6   
34                                                  5   
35                                                  1   
36                                                  5   
37                                                  4   
38                                                  3   
39                                                  3   
40                                                  3   
41                                                  4   
42                                                  2   
43                                                  3   
44                                                  4   
45                                                  5   
46                                                  5   
47                                                  1   
48                                                  5   
49                                                  4   
50                                                  4   
51                                                  2   
52                                                  5   
53                                                  2   
54                                                  3   
55                                                  4   
56                                                  4   
57                                                  3   
58                                                  4   
59                                                  3   
60                                                  2   
61                                                  3   
62                                                  2   
63                                                  4   
64                                                  5   
65                                                  6   
66                                                  2   
67                                                  1   
68                                                  3   
69                                                  5   
70                                                  5   
71                                                  4   
72                                                  2   
73                                                  2   
74                                                  4   
75                                                  1   
76                                                  2   
77                                                  3   
78                                                  2   
79                                                  3   
80                                                  4   
81                                                  6   
82                                                  6   
83                                                  3   
84                                                  1   
85                                                  2   
86                                                  3   
87                                                  2   
88                                                  4   
89                                                  2   
90                                                  3   
91                                                  2   
92                                                  1   
93                                                  1   
94                                                  5   
95                                                  1   
96                                                  4   

              Adolescent Sleep Hygiene Scale (ASHS).7  \
0   I go to bed and think about things I need to d...   
1                                              ashs_8   
2                                                   5   
3                                                   4   
4                                                   5   
5                                                   3   
6                                                   2   
7                                                   2   
8                                                   4   
9                                                   4   
10                                                  2   
11                                                  3   
12                                                  5   
13                                                  2   
14                                                  6   
15                                                  3   
16                                                  4   
17                                                  1   
18                                                  4   
19                                                  5   
20                                                  3   
21                                                  4   
22                                                  4   
23                                                  2   
24                                                  3   
25                                                  3   
26                                                  4   
27                                                  4   
28                                                  6   
29                                                  4   
30                                                  3   
31                                                  2   
32                                                  5   
33                                                  5   
34                                                  6   
35                                                  2   
36                                                  4   
37                                                  3   
38                                                  3   
39                                                  4   
40                                                  3   
41                                                  4   
42                                                  5   
43                                                  3   
44                                                  4   
45                                                  4   
46                                                  4   
47                                                  1   
48                                                  3   
49                                                  5   
50                                                  4   
51                                                  4   
52                                                  4   
53                                                  4   
54                                                  2   
55                                                  2   
56                                                  4   
57                                                  4   
58                                                  5   
59                                                  4   
60                                                  2   
61                                                  3   
62                                                  1   
63                                                  3   
64                                                  1   
65                                                  4   
66                                                  3   
67                                                  2   
68                                                  2   
69                                                  1   
70                                                  5   
71                                                  2   
72                                                  4   
73                                                  2   
74                                                  3   
75                                                  2   
76                                                  4   
77                                                  3   
78                                                  1   
79                                                  2   
80                                                  2   
81                                                  3   
82                                                  6   
83                                                  3   
84                                                  3   
85                                                  1   
86                                                  2   
87                                                  4   
88                                                  1   
89                                                  1   
90                                                  5   
91                                                  2   
92                                                  2   
93                                                  3   
94                                                  4   
95                                                  1   
96                                                  2   

              Adolescent Sleep Hygiene Scale (ASHS).8  \
0   I go to bed and replay the day's events over a...   
1                                              ashs_9   
2                                                   6   
3                                                   5   
4                                                   6   
5                                                   5   
6                                                   2   
7                                                   5   
8                                                   4   
9                                                   6   
10                                                  2   
11                                                  5   
12                                                  6   
13                                                  2   
14                                                  6   
15                                                  4   
16                                                  5   
17                                                  3   
18                                                  6   
19                                                  5   
20                                                  4   
21                                                  5   
22                                                  4   
23                                                  4   
24                                                  4   
25                                                  3   
26                                                  6   
27                                                  6   
28                                                  5   
29                                                  6   
30                                                  5   
31                                                  4   
32                                                  6   
33                                                  6   
34                                                  5   
35                                                  2   
36                                                  4   
37                                                  4   
38                                                  6   
39                                                  6   
40                                                  5   
41                                                  3   
42                                                  6   
43                                                  5   
44                                                  5   
45                                                  4   
46                                                  4   
47                                                  4   
48                                                  4   
49                                                  6   
50                                                  5   
51                                                  5   
52                                                  6   
53                                                  5   
54                                                  3   
55                                                  4   
56                                                  4   
57                                                  5   
58                                                  6   
59                                                  5   
60                                                  4   
61                                                  2   
62                                                  2   
63                                                  4   
64                                                  2   
65                                                  4   
66                                                  4   
67                                                  3   
68                                                  4   
69                                                  4   
70                                                  4   
71                                                  1   
72                                                  5   
73                                                  3   
74                                                  5   
75                                                  1   
76                                                  5   
77                                                  4   
78                                                  2   
79                                                  3   
80                                                  4   
81                                                  6   
82                                                  5   
83                                                  4   
84                                                  4   
85                                                  5   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  2   
90                                                  5   
91                                                  2   
92                                                  4   
93                                                  4   
94                                                  6   
95                                                  4   
96                                                  4   

              Adolescent Sleep Hygiene Scale (ASHS).9  \
0   I use my bed for things other than sleep (for ...   
1                                             ashs_10   
2                                                   6   
3                                                   4   
4                                                   3   
5                                                   3   
6                                                   2   
7                                                   6   
8                                                   2   
9                                                   4   
10                                                  3   
11                                                  1   
12                                                  3   
13                                                  1   
14                                                  4   
15                                                  4   
16                                                  3   
17                                                  2   
18                                                  5   
19                                                  3   
20                                                  2   
21                                                  3   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  5   
28                                                  3   
29                                                  3   
30                                                  1   
31                                                  5   
32                                                  2   
33                                                  5   
34                                                  4   
35                                                  1   
36                                                  4   
37                                                  1   
38                                                  3   
39                                                  5   
40                                                  3   
41                                                  2   
42                                                  1   
43                                                  1   
44                                                  3   
45                                                  5   
46                                                  5   
47                                                  4   
48                                                  1   
49                                                  1   
50                                                  2   
51                                                  5   
52                                                  1   
53                                                  3   
54                                                  3   
55                                                  2   
56                                                  4   
57                                                  6   
58                                                  3   
59                                                  5   
60                                                  3   
61                                                  2   
62                                                  5   
63                                                  3   
64                                                  4   
65                                                  2   
66                                                  5   
67                                                  3   
68                                                  3   
69                                                  5   
70                                                  5   
71                                                  6   
72                                                  2   
73                                                  2   
74                                                  4   
75                                                  2   
76                                                  1   
77                                                  1   
78                                                  4   
79                                                  2   
80                                                  4   
81                                                  6   
82                                                  5   
83                                                  5   
84                                                  1   
85                                                  4   
86                                                  4   
87                                                  1   
88                                                  6   
89                                                  1   
90                                                  5   
91                                                  2   
92                                                  5   
93                                                  2   
94                                                  5   
95                                                  3   
96                                                  1   

             Adolescent Sleep Hygiene Scale (ASHS).10  \
0   I check my clock several times during the nigh...   
1                                             ashs_11   
2                                                   6   
3                                                   5   
4                                                   6   
5                                                   6   
6                                                   3   
7                                                   6   
8                                                   5   
9                                                   6   
10                                                  5   
11                                                  5   
12                                                  5   
13                                                  5   
14                                                  6   
15                                                  5   
16                                                  6   
17                                                  5   
18                                                  6   
19                                                  6   
20                                                  5   
21                                                  5   
22                                                  5   
23                                                  4   
24                                                  5   
25                                                  5   
26                                                  4   
27                                                  5   
28                                                  5   
29                                                  6   
30                                                  3   
31                                                  5   
32                                                  6   
33                                                  6   
34                                                  6   
35                                                  2   
36                                                  6   
37                                                  5   
38                                                  5   
39                                                  3   
40                                                  6   
41                                                  6   
42                                                  5   
43                                                  6   
44                                                  5   
45                                                  5   
46                                                  6   
47                                                  4   
48                                                  2   
49                                                  6   
50                                                  6   
51                                                  6   
52                                                  6   
53                                                  5   
54                                                  5   
55                                                  3   
56                                                  6   
57                                                  6   
58                                                  6   
59                                                  4   
60                                                  6   
61                                                  5   
62                                                  6   
63                                                  5   
64                                                  5   
65                                                  5   
66                                                  4   
67                                                  4   
68                                                  3   
69                                                  5   
70                                                  6   
71                                                  3   
72                                                  5   
73                                                  3   
74                                                  3   
75                                                  2   
76                                                  3   
77                                                  4   
78                                                  3   
79                                                  3   
80                                                  5   
81                                                  5   
82                                                  6   
83                                                  4   
84                                                  5   
85                                                  6   
86                                                  6   
87                                                  2   
88                                                  6   
89                                                  3   
90                                                  6   
91                                                  4   
92                                                  5   
93                                                  3   
94                                                  2   
95                                                  3   
96                                                  2   

             Adolescent Sleep Hygiene Scale (ASHS).11  \
0   During the 1 hour before bedtime, things happe...   
1                                             ashs_12   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   5   
6                                                   4   
7                                                   5   
8                                                   4   
9                                                   6   
10                                                  4   
11                                                  5   
12                                                  6   
13                                                  3   
14                                                  6   
15                                                  4   
16                                                  6   
17                                                  4   
18                                                  6   
19                                                  5   
20                                                  4   
21                                                  6   
22                                                  5   
23                                                  5   
24                                                  5   
25                                                  6   
26                                                  5   
27                                                  6   
28                                                  5   
29                                                  5   
30                                                  5   
31                                                  5   
32                                                  6   
33                                                  5   
34                                                  6   
35                                                  4   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  6   
40                                                  6   
41                                                  5   
42                                                  6   
43                                                  6   
44                                                  6   
45                                                  6   
46                                                  5   
47                                                  5   
48                                                  5   
49                                                  6   
50                                                  6   
51                                                  5   
52                                                  4   
53                                                  5   
54                                                  6   
55                                                  6   
56                                                  5   
57                                                  5   
58                                                  6   
59                                                  4   
60                                                  6   
61                                                  4   
62                                                  4   
63                                                  5   
64                                                  3   
65                                                  5   
66                                                  4   
67                                                  6   
68                                                  5   
69                                                  5   
70                                                  6   
71                                                  5   
72                                                  6   
73                                                  5   
74                                                  5   
75                                                  3   
76                                                  5   
77                                                  4   
78                                                  4   
79                                                  5   
80                                                  5   
81                                                  6   
82                                                  6   
83                                                  4   
84                                                  4   
85                                                  6   
86                                                  5   
87                                                  4   
88                                                  4   
89                                                  2   
90                                                  6   
91                                                  2   
92                                                  5   
93                                                  5   
94                                                  5   
95                                                  5   
96                                                  4   

             Adolescent Sleep Hygiene Scale (ASHS).12  \
0   I go to bed feeling upset. (1=Always\n2=Freque...   
1                                             ashs_13   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   5   
6                                                   4   
7                                                   5   
8                                                   4   
9                                                   6   
10                                                  5   
11                                                  5   
12                                                  6   
13                                                  4   
14                                                  6   
15                                                  5   
16                                                  5   
17                                                  5   
18                                                  5   
19                                                  5   
20                                                  5   
21                                                  5   
22                                                  5   
23                                                  5   
24                                                  5   
25                                                  4   
26                                                  6   
27                                                  6   
28                                                  5   
29                                                  6   
30                                                  5   
31                                                  5   
32                                                  5   
33                                                  5   
34                                                  5   
35                                                  5   
36                                                  4   
37                                                  5   
38                                                  6   
39                                                  6   
40                                                  6   
41                                                  5   
42                                                  6   
43                                                  4   
44                                                  6   
45                                                  6   
46                                                  5   
47                                                  5   
48                                                  5   
49                                                  6   
50                                                  6   
51                                                  5   
52                                                  4   
53                                                  5   
54                                                  5   
55                                                  5   
56                                                  5   
57                                                  5   
58                                                  6   
59                                                  4   
60                                                  6   
61                                                  6   
62                                                  5   
63                                                  5   
64                                                  5   
65                                                  5   
66                                                  5   
67                                                  5   
68                                                  5   
69                                                  4   
70                                                  6   
71                                                  4   
72                                                  6   
73                                                  6   
74                                                  5   
75                                                  4   
76                                                  5   
77                                                  4   
78                                                  5   
79                                                  5   
80                                                  5   
81                                                  6   
82                                                  6   
83                                                  5   
84                                                  5   
85                                                  6   
86                                                  5   
87                                                  4   
88                                                  6   
89                                                  4   
90                                                  5   
91                                                  4   
92                                                  5   
93                                                  5   
94                                                  5   
95                                                  5   
96                                                  5   

             Adolescent Sleep Hygiene Scale (ASHS).13  \
0   I go to bed and worry about things happening a...   
1                                             ashs_14   
2                                                   6   
3                                                   6   
4                                                   4   
5                                                   6   
6                                                   4   
7                                                   4   
8                                                   5   
9                                                   6   
10                                                  4   
11                                                  5   
12                                                  6   
13                                                  4   
14                                                  6   
15                                                  5   
16                                                  5   
17                                                  4   
18                                                  5   
19                                                  5   
20                                                  5   
21                                                  5   
22                                                  4   
23                                                  5   
24                                                  5   
25                                                  3   
26                                                  6   
27                                                  6   
28                                                  5   
29                                                  3   
30                                                  5   
31                                                  3   
32                                                  6   
33                                                  5   
34                                                  6   
35                                                  3   
36                                                  4   
37                                                  4   
38                                                  6   
39                                                  6   
40                                                  6   
41                                                  6   
42                                                  6   
43                                                  2   
44                                                  6   
45                                                  4   
46                                                  5   
47                                                  3   
48                                                  5   
49                                                  6   
50                                                  6   
51                                                  4   
52                                                  4   
53                                                  5   
54                                                  3   
55                                                  3   
56                                                  5   
57                                                  6   
58                                                  5   
59                                                  4   
60                                                  5   
61                                                  3   
62                                                  3   
63                                                  4   
64                                                  6   
65                                                  4   
66                                                  4   
67                                                  4   
68                                                  2   
69                                                  2   
70                                                  5   
71                                                  2   
72                                                  6   
73                                                  4   
74                                                  4   
75                                                  2   
76                                                  3   
77                                                  4   
78                                                  3   
79                                                  4   
80                                                  6   
81                                                  4   
82                                                  6   
83                                                  4   
84                                                  4   
85                                                  6   
86                                                  4   
87                                                  6   
88                                                  2   
89                                                  1   
90                                                  6   
91                                                  4   
92                                                  5   
93                                                  3   
94                                                  5   
95                                                  6   
96                                                  4   

             Adolescent Sleep Hygiene Scale (ASHS).14  \
0   I fall asleep while listening to loud music. (...   
1                                             ashs_15   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   6   
6                                                   6   
7                                                   6   
8                                                   6   
9                                                   6   
10                                                  5   
11                                                  6   
12                                                  4   
13                                                  6   
14                                                  6   
15                                                  5   
16                                                  6   
17                                                  6   
18                                                  6   
19                                                  6   
20                                                  4   
21                                                  6   
22                                                  5   
23                                                  6   
24                                                  4   
25                                                  6   
26                                                  6   
27                                                  6   
28                                                  6   
29                                                  6   
30                                                  6   
31                                                  6   
32                                                  5   
33                                                  6   
34                                                  6   
35                                                  4   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  1   
40                                                  5   
41                                                  3   
42                                                  5   
43                                                  6   
44                                                  4   
45                                                  6   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  6   
52                                                  6   
53                                                  5   
54                                                  6   
55                                                  6   
56                                                  6   
57                                                  6   
58                                                  6   
59                                                  6   
60                                                  6   
61                                                  6   
62                                                  6   
63                                                  6   
64                                                  6   
65                                                  5   
66                                                  6   
67                                                  6   
68                                                  6   
69                                                  6   
70                                                  5   
71                                                  6   
72                                                  6   
73                                                  6   
74                                                  6   
75                                                  6   
76                                                  6   
77                                                  6   
78                                                  6   
79                                                  6   
80                                                  6   
81                                                  6   
82                                                  6   
83                                                  6   
84                                                  5   
85                                                  6   
86                                                  6   
87                                                  3   
88                                                  4   
89                                                  6   
90                                                  6   
91                                                  6   
92                                                  6   
93                                                  5   
94                                                  5   
95                                                  6   
96                                                  6   

             Adolescent Sleep Hygiene Scale (ASHS).15  \
0   I fall asleep while watching television. (1=Al...   
1                                             ashs_16   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   4   
6                                                   6   
7                                                   6   
8                                                   6   
9                                                   6   
10                                                  3   
11                                                  5   
12                                                  6   
13                                                  6   
14                                                  6   
15                                                  6   
16                                                  6   
17                                                  6   
18                                                  6   
19                                                  5   
20                                                  2   
21                                                  6   
22                                                  6   
23                                                  6   
24                                                  3   
25                                                  6   
26                                                  6   
27                                                  4   
28                                                  5   
29                                                  6   
30                                                  6   
31                                                  6   
32                                                  4   
33                                                  5   
34                                                  4   
35                                                  4   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  6   
40                                                  4   
41                                                  6   
42                                                  5   
43                                                  3   
44                                                  4   
45                                                  6   
46                                                  6   
47                                                  5   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  5   
52                                                  6   
53                                                  4   
54                                                  6   
55                                                  4   
56                                                  6   
57                                                  4   
58                                                  5   
59                                                  6   
60                                                  6   
61                                                  3   
62                                                  6   
63                                                  6   
64                                                  6   
65                                                  6   
66                                                  5   
67                                                  6   
68                                                  3   
69                                                  5   
70                                                  6   
71                                                  6   
72                                                  5   
73                                                  6   
74                                                  6   
75                                                  6   
76                                                  6   
77                                                  6   
78                                                  4   
79                                                  4   
80                                                  6   
81                                                  6   
82                                                  5   
83                                                  6   
84                                                  5   
85                                                  6   
86                                                  6   
87                                                  6   
88                                                  6   
89                                                  6   
90                                                  5   
91                                                  6   
92                                                  2   
93                                                  5   
94                                                  6   
95                                                  6   
96                                                  4   

             Adolescent Sleep Hygiene Scale (ASHS).16  \
0   I fall asleep in a brightly lit room (for exam...   
1                                             ashs_17   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   6   
6                                                   6   
7                                                   6   
8                                                   6   
9                                                   6   
10                                                  5   
11                                                  5   
12                                                  6   
13                                                  6   
14                                                  6   
15                                                  5   
16                                                  6   
17                                                  6   
18                                                  6   
19                                                  4   
20                                                  6   
21                                                  6   
22                                                  6   
23                                                  6   
24                                                  4   
25                                                  6   
26                                                  4   
27                                                  5   
28                                                  4   
29                                                  6   
30                                                  6   
31                                                  5   
32                                                  6   
33                                                  6   
34                                                  4   
35                                                  3   
36                                                  4   
37                                                  6   
38                                                  6   
39                                                  6   
40                                                  4   
41                                                  6   
42                                                  6   
43                                                  1   
44                                                  6   
45                                                  6   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  4   
50                                                  6   
51                                                  6   
52                                                  6   
53                                                  6   
54                                                  6   
55                                                  3   
56                                                  6   
57                                                  5   
58                                                  3   
59                                                  6   
60                                                  4   
61                                                  6   
62                                                  5   
63                                                  6   
64                                                  6   
65                                                  5   
66                                                  6   
67                                                  6   
68                                                  6   
69                                                  6   
70                                                  6   
71                                                  5   
72                                                  6   
73                                                  6   
74                                                  5   
75                                                  6   
76                                                  6   
77                                                  6   
78                                                  4   
79                                                  6   
80                                                  6   
81                                                  6   
82                                                  6   
83                                                  6   
84                                                  5   
85                                                  6   
86                                                  6   
87                                                  6   
88                                                  6   
89                                                  6   
90                                                  6   
91                                                  6   
92                                                  6   
93                                                  6   
94                                                  4   
95                                                  6   
96                                                  4   

             Adolescent Sleep Hygiene Scale (ASHS).17  \
0   I fall asleep in a room that feels too hot or ...   
1                                             ashs_18   
2                                                   5   
3                                                   5   
4                                                   5   
5                                                   4   
6                                                   5   
7                                                   6   
8                                                   5   
9                                                   5   
10                                                  5   
11                                                  5   
12                                                  4   
13                                                  6   
14                                                  6   
15                                                  5   
16                                                  6   
17                                                  5   
18                                                  6   
19                                                  6   
20                                                  6   
21                                                  5   
22                                                  6   
23                                                  6   
24                                                  6   
25                                                  5   
26                                                  6   
27                                                  4   
28                                                  4   
29                                                  6   
30                                                  5   
31                                                  5   
32                                                  6   
33                                                  6   
34                                                  5   
35                                                  3   
36                                                  6   
37                                                  6   
38                                                  5   
39                                                  4   
40                                                  6   
41                                                  6   
42                                                  5   
43                                                  5   
44                                                  4   
45                                                  4   
46                                                  6   
47                                                  6   
48                                                  5   
49                                                  4   
50                                                  6   
51                                                  6   
52                                                  6   
53                                                  4   
54                                                  6   
55                                                  4   
56                                                  5   
57                                                  4   
58                                                  6   
59                                                  5   
60                                                  1   
61                                                  2   
62                                                  4   
63                                                  6   
64                                                  5   
65                                                  5   
66                                                  6   
67                                                  5   
68                                                  5   
69                                                  4   
70                                                  5   
71                                                  5   
72                                                  4   
73                                                  5   
74                                                  6   
75                                                  5   
76                                                  4   
77                                                  4   
78                                                  5   
79                                                  6   
80                                                  4   
81                                                  4   
82                                                  6   
83                                                  6   
84                                                  6   
85                                                  4   
86                                                  4   
87                                                  5   
88                                                  1   
89                                                  5   
90                                                  5   
91                                                  6   
92                                                  6   
93                                                  4   
94                                                  4   
95                                                  6   
96                                                  4   

             Adolescent Sleep Hygiene Scale (ASHS).18  \
0   During the day I take a nap that lasts >1 hour...   
1                                             ashs_19   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   6   
6                                                   6   
7                                                   6   
8                                                   5   
9                                                   5   
10                                                  4   
11                                                  3   
12                                                  6   
13                                                  4   
14                                                  6   
15                                                  5   
16                                                  5   
17                                                  1   
18                                                  6   
19                                                  6   
20                                                  6   
21                                                  5   
22                                                  3   
23                                                  4   
24                                                  3   
25                                                  2   
26                                                  3   
27                                                  5   
28                                                  5   
29                                                  6   
30                                                  5   
31                                                  5   
32                                                  5   
33                                                  5   
34                                                  4   
35                                                  5   
36                                                  4   
37                                                  6   
38                                                  6   
39                                                  6   
40                                                  4   
41                                                  4   
42                                                  5   
43                                                  3   
44                                                  5   
45                                                  5   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  6   
52                                                  5   
53                                                  6   
54                                                  6   
55                                                  3   
56                                                  6   
57                                                  6   
58                                                  5   
59                                                  6   
60                                                  4   
61                                                  6   
62                                                  4   
63                                                  6   
64                                                  5   
65                                                  3   
66                                                  4   
67                                                  6   
68                                                  4   
69                                                  5   
70                                                  5   
71                                                  4   
72                                                  5   
73                                                  5   
74                                                  5   
75                                                  6   
76                                                  5   
77                                                  6   
78                                                  3   
79                                                  5   
80                                                  4   
81                                                  6   
82                                                  6   
83                                                  6   
84                                                  6   
85                                                  6   
86                                                  5   
87                                                  6   
88                                                  3   
89                                                  6   
90                                                  6   
91                                                  4   
92                                                  6   
93                                                  4   
94                                                  3   
95                                                  4   
96                                                  4   

             Adolescent Sleep Hygiene Scale (ASHS).19  \
0   After 6:00 pm, I smoke or chew tobacco. (1=Alw...   
1                                             ashs_20   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   6   
6                                                   6   
7                                                   6   
8                                                   6   
9                                                   6   
10                                                  6   
11                                                  6   
12                                                  6   
13                                                  6   
14                                                  6   
15                                                  5   
16                                                  6   
17                                                  6   
18                                                  6   
19                                                  6   
20                                                  6   
21                                                  6   
22                                                  6   
23                                                  6   
24                                                  6   
25                                                  6   
26                                                  6   
27                                                  6   
28                                                  6   
29                                                  6   
30                                                  6   
31                                                  6   
32                                                  6   
33                                                  6   
34                                                  6   
35                                                  5   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  6   
40                                                  6   
41                                                  6   
42                                                  6   
43                                                  6   
44                                                  6   
45                                                  6   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  6   
52                                                  6   
53                                                  6   
54                                                  6   
55                                                  6   
56                                                  6   
57                                                  6   
58                                                  6   
59                                                  6   
60                                                  6   
61                                                  6   
62                                                  6   
63                                                  6   
64                                                  6   
65                                                  6   
66                                                  6   
67                                                  6   
68                                                  6   
69                                                  6   
70                                                  6   
71                                                  6   
72                                                  6   
73                                                  6   
74                                                  6   
75                                                  6   
76                                                  6   
77                                                  6   
78                                                  6   
79                                                  6   
80                                                  6   
81                                                  6   
82                                                  6   
83                                                  6   
84                                                  6   
85                                                  6   
86                                                  6   
87                                                  6   
88                                                  6   
89                                                  6   
90                                                  6   
91                                                  6   
92                                                  6   
93                                                  6   
94                                                  6   
95                                                  6   
96                                                  6   

             Adolescent Sleep Hygiene Scale (ASHS).20  \
0   After 6:00 pm, I drink beer (or other drinks w...   
1                                             ashs_21   
2                                                   6   
3                                                   5   
4                                                   6   
5                                                   5   
6                                                   6   
7                                                   6   
8                                                   5   
9                                                   6   
10                                                  5   
11                                                  6   
12                                                  6   
13                                                  6   
14                                                  6   
15                                                  4   
16                                                  6   
17                                                  6   
18                                                  6   
19                                                  6   
20                                                  6   
21                                                  6   
22                                                  6   
23                                                  4   
24                                                  6   
25                                                  6   
26                                                  6   
27                                                  6   
28                                                  6   
29                                                  6   
30                                                  6   
31                                                  6   
32                                                  5   
33                                                  6   
34                                                  4   
35                                                  4   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  6   
40                                                  6   
41                                                  6   
42                                                  6   
43                                                  6   
44                                                  6   
45                                                  5   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  6   
52                                                  6   
53                                                  5   
54                                                  6   
55                                                  6   
56                                                  6   
57                                                  6   
58                                                  6   
59                                                  6   
60                                                  6   
61                                                  6   
62                                                  6   
63                                                  6   
64                                                  6   
65                                                  6   
66                                                  6   
67                                                  6   
68                                                  6   
69                                                  6   
70                                                  6   
71                                                  6   
72                                                  6   
73                                                  6   
74                                                  6   
75                                                  6   
76                                                  6   
77                                                  6   
78                                                  6   
79                                                  6   
80                                                  5   
81                                                  6   
82                                                  6   
83                                                  6   
84                                                  6   
85                                                  6   
86                                                  5   
87                                                  6   
88                                                  6   
89                                                  6   
90                                                  6   
91                                                  6   
92                                                  6   
93                                                  6   
94                                                  6   
95                                                  6   
96                                                  5   

             Adolescent Sleep Hygiene Scale (ASHS).21  \
0   I use a bedtime routine (for example, bathing,...   
1                                             ashs_22   
2                                                   1   
3                                                   2   
4                                                   1   
5                                                   3   
6                                                   3   
7                                                   1   
8                                                   3   
9                                                   2   
10                                                  4   
11                                                  1   
12                                                  2   
13                                                  1   
14                                                  2   
15                                                  4   
16                                                  1   
17                                                  3   
18                                                  3   
19                                                  1   
20                                                  2   
21                                                  2   
22                                                  2   
23                                                  3   
24                                                  1   
25                                                  3   
26                                                  4   
27                                                  2   
28                                                  2   
29                                                  2   
30                                                  4   
31                                                  3   
32                                                  3   
33                                                  1   
34                                                  3   
35                                                  5   
36                                                  6   
37                                                  1   
38                                                  4   
39                                                  4   
40                                                  4   
41                                                  4   
42                                                  2   
43                                                  3   
44                                                  2   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  2   
49                                                  1   
50                                                  4   
51                                                  2   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  2   
56                                                  1   
57                                                  1   
58                                                  5   
59                                                  1   
60                                                  5   
61                                                  1   
62                                                  4   
63                                                  2   
64                                                  1   
65                                                  2   
66                                                  1   
67                                                  2   
68                                                  3   
69                                                  1   
70                                                  1   
71                                                  3   
72                                                  5   
73                                                  3   
74                                                  4   
75                                                  1   
76                                                  5   
77                                                  1   
78                                                  5   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  4   
84                                                  5   
85                                                  2   
86                                                  2   
87                                                  2   
88                                                  1   
89                                                  1   
90                                                  2   
91                                                  5   
92                                                  2   
93                                                  1   
94                                                  2   
95                                                  1   
96                                                  4   

             Adolescent Sleep Hygiene Scale (ASHS).22  \
0    During the school week, I stay up >1 hour pas...   
1                                             ashs_23   
2                                                   5   
3                                                   5   
4                                                   4   
5                                                   4   
6                                                   3   
7                                                   4   
8                                                   5   
9                                                   5   
10                                                  3   
11                                                  4   
12                                                  4   
13                                                  3   
14                                                  5   
15                                                  2   
16                                                  5   
17                                                  4   
18                                                  5   
19                                                  4   
20                                                  4   
21                                                  4   
22                                                  4   
23                                                  4   
24                                                  2   
25                                                  4   
26                                                  5   
27                                                  5   
28                                                  5   
29                                                  5   
30                                                  3   
31                                                  4   
32                                                  5   
33                                                  5   
34                                                  3   
35                                                  3   
36                                                  3   
37                                                  2   
38                                                  6   
39                                                  6   
40                                                  4   
41                                                  4   
42                                                  4   
43                                                  4   
44                                                  4   
45                                                  4   
46                                                  6   
47                                                  1   
48                                                  5   
49                                                  3   
50                                                  3   
51                                                  2   
52                                                  2   
53                                                  4   
54                                                  2   
55                                                  1   
56                                                  4   
57                                                  4   
58                                                  2   
59                                                  2   
60                                                  1   
61                                                  2   
62                                                  4   
63                                                  4   
64                                                  4   
65                                                  5   
66                                                  2   
67                                                  4   
68                                                  4   
69                                                  4   
70                                                  5   
71                                                  4   
72                                                  5   
73                                                  3   
74                                                  5   
75                                                  2   
76                                                  3   
77                                                  4   
78                                                  4   
79                                                  4   
80                                                  3   
81                                                  5   
82                                                  5   
83                                                  5   
84                                                  5   
85                                                  1   
86                                                  4   
87                                                  5   
88                                                  6   
89                                                  2   
90                                                  5   
91                                                  4   
92                                                  3   
93                                                  5   
94                                                  5   
95                                                  5   
96                                                  1   

             Adolescent Sleep Hygiene Scale (ASHS).23  \
0   During the school week, I 'sleep in' >1 hour p...   
1                                             ashs_24   
2                                                   6   
3                                                   5   
4                                                   4   
5                                                   6   
6                                                   4   
7                                                   6   
8                                                   5   
9                                                   4   
10                                                  6   
11                                                  6   
12                                                  5   
13                                                  5   
14                                                  6   
15                                                  5   
16                                                  5   
17                                                  6   
18                                                  6   
19                                                  6   
20                                                  4   
21                                                  5   
22                                                  6   
23                                                  6   
24                                                  6   
25                                                  4   
26                                                  6   
27                                                  6   
28                                                  6   
29                                                  5   
30                                                  5   
31                                                  5   
32                                                  6   
33                                                  5   
34                                                  4   
35                                                  5   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  5   
40                                                  6   
41                                                  4   
42                                                  6   
43                                                  2   
44                                                  6   
45                                                  4   
46                                                  6   
47                                                  4   
48                                                  6   
49                                                  6   
50                                                  6   
51                                                  4   
52                                                  5   
53                                                  6   
54                                                  6   
55                                                  4   
56                                                  6   
57                                                  6   
58                                                  6   
59                                                  5   
60                                                  6   
61                                                  4   
62                                                  4   
63                                                  6   
64                                                  6   
65                                                  6   
66                                                  4   
67                                                  6   
68                                                  5   
69                                                  5   
70                                                  6   
71                                                  6   
72                                                  4   
73                                                  5   
74                                                  5   
75                                                  6   
76                                                  6   
77                                                  6   
78                                                  6   
79                                                  6   
80                                                  5   
81                                                  6   
82                                                  6   
83                                                  5   
84                                                  5   
85                                                  6   
86                                                  6   
87                                                  5   
88                                                  6   
89                                                  6   
90                                                  6   
91                                                  5   
92                                                  6   
93                                                  2   
94                                                  6   
95                                                  5   
96                                                  6   

             Adolescent Sleep Hygiene Scale (ASHS).24  \
0   On weekends, I stay up >1 hour past my usual b...   
1                                             ashs_25   
2                                                   5   
3                                                   4   
4                                                   1   
5                                                   2   
6                                                   5   
7                                                   2   
8                                                   3   
9                                                   3   
10                                                  3   
11                                                  1   
12                                                  3   
13                                                  2   
14                                                  5   
15                                                  1   
16                                                  5   
17                                                  3   
18                                                  3   
19                                                  5   
20                                                  4   
21                                                  3   
22                                                  3   
23                                                  4   
24                                                  4   
25                                                  3   
26                                                  5   
27                                                  4   
28                                                  3   
29                                                  5   
30                                                  2   
31                                                  3   
32                                                  4   
33                                                  3   
34                                                  2   
35                                                  1   
36                                                  5   
37                                                  1   
38                                                  3   
39                                                  3   
40                                                  3   
41                                                  3   
42                                                  1   
43                                                  2   
44                                                  2   
45                                                  3   
46                                                  5   
47                                                  3   
48                                                  4   
49                                                  4   
50                                                  4   
51                                                  2   
52                                                  4   
53                                                  4   
54                                                  4   
55                                                  4   
56                                                  4   
57                                                  2   
58                                                  4   
59                                                  1   
60                                                  1   
61                                                  5   
62                                                  4   
63                                                  4   
64                                                  1   
65                                                  5   
66                                                  2   
67                                                  2   
68                                                  3   
69                                                  3   
70                                                  4   
71                                                  2   
72                                                  4   
73                                                  3   
74                                                  3   
75                                                  2   
76                                                  3   
77                                                  1   
78                                                  2   
79                                                  4   
80                                                  3   
81                                                  4   
82                                                  4   
83                                                  5   
84                                                  5   
85                                                  1   
86                                                  2   
87                                                  3   
88                                                  3   
89                                                  1   
90                                                  2   
91                                                  2   
92                                                  2   
93                                                  6   
94                                                  2   
95                                                  2   
96                                                  4   

             Adolescent Sleep Hygiene Scale (ASHS).25  \
0   On weekends, I 'sleep in' >1 hour past my usua...   
1                                             ashs_26   
2                                                   5   
3                                                   4   
4                                                   5   
5                                                   2   
6                                                   5   
7                                                   4   
8                                                   5   
9                                                   3   
10                                                  3   
11                                                  2   
12                                                  2   
13                                                  3   
14                                                  2   
15                                                  1   
16                                                  2   
17                                                  2   
18                                                  5   
19                                                  3   
20                                                  4   
21                                                  6   
22                                                  3   
23                                                  4   
24                                                  1   
25                                                  2   
26                                                  3   
27                                                  3   
28                                                  3   
29                                                  5   
30                                                  2   
31                                                  2   
32                                                  4   
33                                                  4   
34                                                  1   
35                                                  2   
36                                                  4   
37                                                  5   
38                                                  4   
39                                                  3   
40                                                  2   
41                                                  6   
42                                                  1   
43                                                  2   
44                                                  2   
45                                                  2   
46                                                  4   
47                                                  5   
48                                                  4   
49                                                  4   
50                                                  4   
51                                                  3   
52                                                  4   
53                                                  4   
54                                                  1   
55                                                  1   
56                                                  4   
57                                                  5   
58                                                  4   
59                                                  1   
60                                                  1   
61                                                  2   
62                                                  4   
63                                                  3   
64                                                  3   
65                                                  4   
66                                                  2   
67                                                  2   
68                                                  2   
69                                                  1   
70                                                  3   
71                                                  2   
72                                                  3   
73                                                  4   
74                                                  3   
75                                                  4   
76                                                  2   
77                                                  3   
78                                                  1   
79                                                  5   
80                                                  2   
81                                                  5   
82                                                  4   
83                                                  5   
84                                                  5   
85                                                  5   
86                                                  4   
87                                                  2   
88                                                  3   
89                                                  1   
90                                                  5   
91                                                  3   
92                                                  1   
93                                                  6   
94                                                  4   
95                                                  4   
96                                                  3   

             Adolescent Sleep Hygiene Scale (ASHS).26  \
0   I sleep alone. (1=Always\n2=Frequently - if no...   
1                                             ashs_27   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   3   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  2   
11                                                  1   
12                                                  1   
13                                                  2   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  5   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  2   
24                                                  2   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  2   
35                                                  2   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  6   
40                                                  2   
41                                                  1   
42                                                  1   
43                                                  2   
44                                                  1   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  5   
50                                                  3   
51                                                  6   
52                                                  1   
53                                                  2   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  2   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  2   
63                                                  1   
64                                                  3   
65                                                  1   
66                                                  1   
67                                                  6   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  2   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  2   
80                                                  1   
81                                                  1   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  4   
93                                                  5   
94                                                  1   
95                                                  1   
96                                                  1   

             Adolescent Sleep Hygiene Scale (ASHS).27  \
0   I sleep all or part of the night with someone ...   
1                                             ashs_28   
2                                                   6   
3                                                   6   
4                                                   6   
5                                                   4   
6                                                   6   
7                                                   6   
8                                                   6   
9                                                   6   
10                                                  5   
11                                                  6   
12                                                  6   
13                                                  6   
14                                                  6   
15                                                  6   
16                                                  6   
17                                                  6   
18                                                  2   
19                                                  6   
20                                                  6   
21                                                  6   
22                                                  6   
23                                                  6   
24                                                  5   
25                                                  6   
26                                                  6   
27                                                  6   
28                                                  6   
29                                                  6   
30                                                  6   
31                                                  6   
32                                                  6   
33                                                  1   
34                                                  5   
35                                                  5   
36                                                  6   
37                                                  6   
38                                                  6   
39                                                  1   
40                                                  6   
41                                                  6   
42                                                  5   
43                                                  6   
44                                                  6   
45                                                  6   
46                                                  6   
47                                                  6   
48                                                  6   
49                                                  2   
50                                                  6   
51                                                  1   
52                                                  6   
53                                                  6   
54                                                  6   
55                                                  6   
56                                                  6   
57                                                  5   
58                                                  6   
59                                                  6   
60                                                  6   
61                                                  5   
62                                                  6   
63                                                  6   
64                                                  6   
65                                                  6   
66                                                  6   
67                                                  1   
68                                                  6   
69                                                  6   
70                                                  6   
71                                                  2   
72                                                  6   
73                                                  6   
74                                                  5   
75                                                  6   
76                                                  6   
77                                                  6   
78                                                  6   
79                                                  5   
80                                                  6   
81                                                  6   
82                                                  6   
83                                                  6   
84                                                  6   
85                                                  6   
86                                                  6   
87                                                  6   
88                                                  6   
89                                                  6   
90                                                  6   
91                                                  6   
92                                                  4   
93                                                  5   
94                                                  6   
95                                                  6   
96                                                  4   

                     Pubertal Development Scale (PDS)  \
0   Would you say that your growth in height: (1=h...   
1                                              pdsf_1   
2                                                   4   
3                                                   3   
4                                                 NaN   
5                                                   4   
6                                                 NaN   
7                                                   4   
8                                                   4   
9                                                 NaN   
10                                                NaN   
11                                                  4   
12                                                NaN   
13                                                  4   
14                                                NaN   
15                                                NaN   
16                                                NaN   
17                                                NaN   
18                                                  4   
19                                                  4   
20                                                  4   
21                                                NaN   
22                                                  4   
23                                                  4   
24                                                  4   
25                                                  4   
26                                                  4   
27                                                  4   
28                                                  4   
29                                                  4   
30                                                NaN   
31                                                  4   
32                                                NaN   
33                                                  4   
34                                                  4   
35                                                  3   
36                                                  4   
37                                                  4   
38                                                NaN   
39                                                NaN   
40                                                  4   
41                                                NaN   
42                                                NaN   
43                                                  4   
44                                                  4   
45                                                NaN   
46                                                  4   
47                                                NaN   
48                                                  4   
49                                                  4   
50                                                  4   
51                                                  4   
52                                                  4   
53                                                NaN   
54                                                  4   
55                                                  4   
56                                                  4   
57                                                  4   
58                                                NaN   
59                                                NaN   
60                                                NaN   
61                                                  4   
62                                                  4   
63                                                  4   
64                                                  4   
65                                                  4   
66                                                NaN   
67                                                  4   
68                                                NaN   
69                                                  4   
70                                                  4   
71                                                NaN   
72                                                NaN   
73                                                  4   
74                                                NaN   
75                                                  4   
76                                                NaN   
77                                                NaN   
78                                                  4   
79                                                  4   
80                                                  4   
81                                                NaN   
82                                                  4   
83                                                  4   
84                                                  4   
85                                                  3   
86                                                NaN   
87                                                  4   
88                                                NaN   
89                                                  4   
90                                                NaN   
91                                                NaN   
92                                                NaN   
93                                                  4   
94                                                NaN   
95                                                  4   
96                                                  4   

                   Pubertal Development Scale (PDS).1  \
0   And how about the growth of your body hair? (B...   
1                                              pdsf_2   
2                                                   4   
3                                                   3   
4                                                 NaN   
5                                                   4   
6                                                 NaN   
7                                                   4   
8                                                   4   
9                                                 NaN   
10                                                NaN   
11                                                  4   
12                                                NaN   
13                                                  4   
14                                                NaN   
15                                                NaN   
16                                                NaN   
17                                                NaN   
18                                                  3   
19                                                  4   
20                                                  4   
21                                                NaN   
22                                                  3   
23                                                  4   
24                                                  4   
25                                                  4   
26                                                  4   
27                                                  4   
28                                                  4   
29                                                  4   
30                                                NaN   
31                                                  4   
32                                                NaN   
33                                                  4   
34                                                  4   
35                                                  3   
36                                                  4   
37                                                  4   
38                                                NaN   
39                                                NaN   
40                                                  4   
41                                                NaN   
42                                                NaN   
43                                                  4   
44                                                  4   
45                                                NaN   
46                                                  4   
47                                                NaN   
48                                                  4   
49                                                  4   
50                                                  4   
51                                                  4   
52                                                  4   
53                                                NaN   
54                                                  4   
55                                                  4   
56                                                  4   
57                                                  4   
58                                                NaN   
59                                                NaN   
60                                                NaN   
61                                                  4   
62                                                  4   
63                                                  4   
64                                                  4   
65                                                  4   
66                                                NaN   
67                                                  3   
68                                                NaN   
69                                                  4   
70                                                  4   
71                                                NaN   
72                                                NaN   
73                                                  4   
74                                                NaN   
75                                                  4   
76                                                NaN   
77                                                NaN   
78                                                  4   
79                                                  4   
80                                                  4   
81                                                NaN   
82                                                  3   
83                                                  4   
84                                                  4   
85                                                  4   
86                                                NaN   
87                                                  4   
88                                                NaN   
89                                                  4   
90                                                NaN   
91                                                NaN   
92                                                NaN   
93                                                  3   
94                                                NaN   
95                                                  4   
96                                                  4   

                   Pubertal Development Scale (PDS).2  \
0   Have you noticed any skin changes, especially ...   
1                                              pdsf_3   
2                                                   3   
3                                                   3   
4                                                 NaN   
5                                                   4   
6                                                 NaN   
7                                                   3   
8                                                   4   
9                                                 NaN   
10                                                NaN   
11                                                  4   
12                                                NaN   
13                                                  4   
14                                                NaN   
15                                                NaN   
16                                                NaN   
17                                                NaN   
18                                                  4   
19                                                  3   
20                                                  4   
21                                                NaN   
22                                                  3   
23                                                  3   
24                                                  3   
25                                                  4   
26                                                  4   
27                                                  4   
28                                                  3   
29                                                  4   
30                                                NaN   
31                                                  3   
32                                                NaN   
33                                                  4   
34                                                  4   
35                                                  2   
36                                                  4   
37                                                  4   
38                                                NaN   
39                                                NaN   
40                                                  4   
41                                                NaN   
42                                                NaN   
43                                                  4   
44                                                  4   
45                                                NaN   
46                                                  4   
47                                                NaN   
48                                                  3   
49                                                  3   
50                                                  3   
51                                                  3   
52                                                  3   
53                                                NaN   
54                                                  3   
55                                                  3   
56                                                  4   
57                                                  2   
58                                                NaN   
59                                                NaN   
60                                                NaN   
61                                                  2   
62                                                  4   
63                                                  3   
64                                                  4   
65                                                  4   
66                                                NaN   
67                                                  2   
68                                                NaN   
69                                                  3   
70                                                  3   
71                                                NaN   
72                                                NaN   
73                                                  4   
74                                                NaN   
75                                                  3   
76                                                NaN   
77                                                NaN   
78                                                  4   
79                                                  4   
80                                                  4   
81                                                NaN   
82                                                  3   
83                                                  4   
84                                                  4   
85                                                  4   
86                                                NaN   
87                                                  4   
88                                                NaN   
89                                                  4   
90                                                NaN   
91                                                NaN   
92                                                NaN   
93                                                  3   
94                                                NaN   
95                                                  3   
96                                                  3   

                   Pubertal Development Scale (PDS).3  \
0   Have you noticed that your breasts have begun ...   
1                                              pdsf_4   
2                                                   4   
3                                                   3   
4                                                 NaN   
5                                                   4   
6                                                 NaN   
7                                                   4   
8                                                   3   
9                                                 NaN   
10                                                NaN   
11                                                  4   
12                                                NaN   
13                                                  4   
14                                                NaN   
15                                                NaN   
16                                                NaN   
17                                                NaN   
18                                                  4   
19                                                  4   
20                                                  4   
21                                                NaN   
22                                                  4   
23                                                  4   
24                                                  3   
25                                                  4   
26                                                  4   
27                                                  4   
28                                                  4   
29                                                  4   
30                                                NaN   
31                                                  4   
32                                                NaN   
33                                                  3   
34                                                  4   
35                                                  3   
36                                                  4   
37                                                  4   
38                                                NaN   
39                                                NaN   
40                                                  4   
41                                                NaN   
42                                                NaN   
43                                                  4   
44                                                  4   
45                                                NaN   
46                                                  4   
47                                                NaN   
48                                                  4   
49                                                  3   
50                                                  3   
51                                                  4   
52                                                  4   
53                                                NaN   
54                                                  4   
55                                                  3   
56                                                  4   
57                                                  4   
58                                                NaN   
59                                                NaN   
60                                                NaN   
61                                                  4   
62                                                  4   
63                                                  4   
64                                                  3   
65                                                  4   
66                                                NaN   
67                                                  3   
68                                                NaN   
69                                                  4   
70                                                  4   
71                                                NaN   
72                                                NaN   
73                                                  2   
74                                                NaN   
75                                                  4   
76                                                NaN   
77                                                NaN   
78                                                  4   
79                                                  4   
80                                                  4   
81                                                NaN   
82                                                  3   
83                                                  4   
84                                                  3   
85                                                  3   
86                                                NaN   
87                                                  4   
88                                                NaN   
89                                                  4   
90                                                NaN   
91                                                NaN   
92                                                NaN   
93                                                  3   
94                                                NaN   
95                                                  4   
96                                                  3   

                   Pubertal Development Scale (PDS).4  \
0   Have you begun to menstruate (started to have ...   
1                                             pdsf_5a   
2                                                   1   
3                                                   1   
4                                                 NaN   
5                                                   1   
6                                                 NaN   
7                                                   1   
8                                                   1   
9                                                 NaN   
10                                                NaN   
11                                                  1   
12                                                NaN   
13                                                  1   
14                                                NaN   
15                                                NaN   
16                                                NaN   
17                                                NaN   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                NaN   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                NaN   
31                                                  1   
32                                                NaN   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                NaN   
39                                                NaN   
40                                                  1   
41                                                NaN   
42                                                NaN   
43                                                  1   
44                                                  1   
45                                                NaN   
46                                                  1   
47                                                NaN   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                NaN   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  1   
58                                                NaN   
59                                                NaN   
60                                                NaN   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  1   
66                                                NaN   
67                                                  1   
68                                                NaN   
69                                                  1   
70                                                  1   
71                                                NaN   
72                                                NaN   
73                                                  1   
74                                                NaN   
75                                                  1   
76                                                NaN   
77                                                NaN   
78                                                  0   
79                                                  1   
80                                                  1   
81                                                NaN   
82                                                  1   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                NaN   
87                                                  1   
88                                                NaN   
89                                                  1   
90                                                NaN   
91                                                NaN   
92                                                NaN   
93                                                  1   
94                                                NaN   
95                                                  1   
96                                                  1   

                   Pubertal Development Scale (PDS).5  \
0   If yes, how old were you when you started to m...   
1                                             pdsf_5b   
2                                                  13   
3                                                  13   
4                                                 NaN   
5                                                  13   
6                                                 NaN   
7                                                  12   
8                                                  13   
9                                                 NaN   
10                                                NaN   
11                                                 12   
12                                                NaN   
13                                                 12   
14                                                NaN   
15                                                NaN   
16                                                NaN   
17                                                NaN   
18                                                 12   
19                                                 12   
20                                                 11   
21                                                NaN   
22                                                 14   
23                                                 12   
24                                                 14   
25                                                 12   
26                                                  8   
27                                                 12   
28                                                 12   
29                                                 10   
30                                                NaN   
31                                                 10   
32                                                NaN   
33                                                 14   
34                                                 14   
35                                                 15   
36                                                 12   
37                                                 13   
38                                                NaN   
39                                                NaN   
40                                                 14   
41                                                NaN   
42                                                NaN   
43                                                 11   
44                                               12.5   
45                                                NaN   
46                                                 13   
47                                                NaN   
48                                                 11   
49                                                 11   
50                                                 12   
51                                               12.5   
52                                                 14   
53                                                NaN   
54                                                 13   
55                                                 13   
56                                                 12   
57                                                 13   
58                                                NaN   
59                                                NaN   
60                                                NaN   
61                                                 15   
62                                                 12   
63                                                 14   
64                                                 12   
65                                                 11   
66                                                NaN   
67                                                 14   
68                                                NaN   
69                                                 13   
70                                                 13   
71                                                NaN   
72                                                NaN   
73                                                 12   
74                                                NaN   
75                                                 13   
76                                                NaN   
77                                                NaN   
78                                                NaN   
79                                                 14   
80                                                 11   
81                                                NaN   
82                                                 12   
83                                                 10   
84                                                 13   
85                                                 14   
86                                                NaN   
87                                                 13   
88                                                NaN   
89                                                 13   
90                                                NaN   
91                                                NaN   
92                                                NaN   
93                                                 14   
94                                                NaN   
95                                                 13   
96                                                 13   

                   Pubertal Development Scale (PDS).6  \
0   Would you say that your growth in height: (1=h...   
1                                              pdsm_1   
2                                                 NaN   
3                                                 NaN   
4                                                   4   
5                                                 NaN   
6                                                   4   
7                                                 NaN   
8                                                 NaN   
9                                                   4   
10                                                  4   
11                                                NaN   
12                                                  3   
13                                                NaN   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  4   
18                                                NaN   
19                                                NaN   
20                                                NaN   
21                                                  4   
22                                                NaN   
23                                                NaN   
24                                                NaN   
25                                                NaN   
26                                                NaN   
27                                                NaN   
28                                                NaN   
29                                                NaN   
30                                                  4   
31                                                NaN   
32                                                  4   
33                                                NaN   
34                                                NaN   
35                                                NaN   
36                                                NaN   
37                                                NaN   
38                                                  3   
39                                                  3   
40                                                NaN   
41                                                  4   
42                                                  3   
43                                                NaN   
44                                                NaN   
45                                                  3   
46                                                NaN   
47                                                  3   
48                                                NaN   
49                                                NaN   
50                                                NaN   
51                                                NaN   
52                                                NaN   
53                                                  4   
54                                                NaN   
55                                                NaN   
56                                                NaN   
57                                                NaN   
58                                                  3   
59                                                  3   
60                                                  4   
61                                                NaN   
62                                                NaN   
63                                                NaN   
64                                                NaN   
65                                                NaN   
66                                                  4   
67                                                NaN   
68                                                  3   
69                                                NaN   
70                                                NaN   
71                                                  3   
72                                                  1   
73                                                NaN   
74                                                  3   
75                                                NaN   
76                                                  4   
77                                                  4   
78                                                NaN   
79                                                NaN   
80                                                NaN   
81                                                  4   
82                                                NaN   
83                                                NaN   
84                                                NaN   
85                                                NaN   
86                                                  4   
87                                                NaN   
88                                                  4   
89                                                NaN   
90                                                  2   
91                                                  3   
92                                                  3   
93                                                NaN   
94                                                  3   
95                                                NaN   
96                                                NaN   

                   Pubertal Development Scale (PDS).7  \
0   And how about the growth of your body hair? (B...   
1                                              pdsm_2   
2                                                 NaN   
3                                                 NaN   
4                                                   3   
5                                                 NaN   
6                                                   3   
7                                                 NaN   
8                                                 NaN   
9                                                   4   
10                                                  3   
11                                                NaN   
12                                                  3   
13                                                NaN   
14                                                  3   
15                                                  3   
16                                                  3   
17                                                  3   
18                                                NaN   
19                                                NaN   
20                                                NaN   
21                                                  3   
22                                                NaN   
23                                                NaN   
24                                                NaN   
25                                                NaN   
26                                                NaN   
27                                                NaN   
28                                                NaN   
29                                                NaN   
30                                                  4   
31                                                NaN   
32                                                  4   
33                                                NaN   
34                                                NaN   
35                                                NaN   
36                                                NaN   
37                                                NaN   
38                                                  3   
39                                                  2   
40                                                NaN   
41                                                  4   
42                                                  3   
43                                                NaN   
44                                                NaN   
45                                                  3   
46                                                NaN   
47                                                  3   
48                                                NaN   
49                                                NaN   
50                                                NaN   
51                                                NaN   
52                                                NaN   
53                                                  3   
54                                                NaN   
55                                                NaN   
56                                                NaN   
57                                                NaN   
58                                                  4   
59                                                  3   
60                                                  4   
61                                                NaN   
62                                                NaN   
63                                                NaN   
64                                                NaN   
65                                                NaN   
66                                                  3   
67                                                NaN   
68                                                  3   
69                                                NaN   
70                                                NaN   
71                                                  3   
72                                                  3   
73                                                NaN   
74                                                  3   
75                                                NaN   
76                                                  3   
77                                                  3   
78                                                NaN   
79                                                NaN   
80                                                NaN   
81                                                  3   
82                                                NaN   
83                                                NaN   
84                                                NaN   
85                                                NaN   
86                                                  3   
87                                                NaN   
88                                                  4   
89                                                NaN   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                NaN   
94                                                  3   
95                                                NaN   
96                                                NaN   

                   Pubertal Development Scale (PDS).8  \
0   Have you noticed any skin changes, especially ...   
1                                              pdsm_3   
2                                                 NaN   
3                                                 NaN   
4                                                   3   
5                                                 NaN   
6                                                   2   
7                                                 NaN   
8                                                 NaN   
9                                                   4   
10                                                  3   
11                                                NaN   
12                                                  3   
13                                                NaN   
14                                                  3   
15                                                  3   
16                                                  3   
17                                                  3   
18                                                NaN   
19                                                NaN   
20                                                NaN   
21                                                  3   
22                                                NaN   
23                                                NaN   
24                                                NaN   
25                                                NaN   
26                                                NaN   
27                                                NaN   
28                                                NaN   
29                                                NaN   
30                                                  3   
31                                                NaN   
32                                                  4   
33                                                NaN   
34                                                NaN   
35                                                NaN   
36                                                NaN   
37                                                NaN   
38                                                  3   
39                                                  3   
40                                                NaN   
41                                                  4   
42                                                  3   
43                                                NaN   
44                                                NaN   
45                                                  3   
46                                                NaN   
47                                                  3   
48                                                NaN   
49                                                NaN   
50                                                NaN   
51                                                NaN   
52                                                NaN   
53                                                  4   
54                                                NaN   
55                                                NaN   
56                                                NaN   
57                                                NaN   
58                                                  3   
59                                                  2   
60                                                  4   
61                                                NaN   
62                                                NaN   
63                                                NaN   
64                                                NaN   
65                                                NaN   
66                                                  3   
67                                                NaN   
68                                                  4   
69                                                NaN   
70                                                NaN   
71                                                  2   
72                                                  3   
73                                                NaN   
74                                                  3   
75                                                NaN   
76                                                  3   
77                                                  3   
78                                                NaN   
79                                                NaN   
80                                                NaN   
81                                                  3   
82                                                NaN   
83                                                NaN   
84                                                NaN   
85                                                NaN   
86                                                  3   
87                                                NaN   
88                                                  4   
89                                                NaN   
90                                                  3   
91                                                  2   
92                                                  3   
93                                                NaN   
94                                                  3   
95                                                NaN   
96                                                NaN   

                   Pubertal Development Scale (PDS).9  \
0   Have you noticed a deepening of your voice? (1...   
1                                              pdsm_4   
2                                                 NaN   
3                                                 NaN   
4                                                   3   
5                                                 NaN   
6                                                   3   
7                                                 NaN   
8                                                 NaN   
9                                                   4   
10                                                  3   
11                                                NaN   
12                                                  3   
13                                                NaN   
14                                                  4   
15                                                  3   
16                                                  3   
17                                                  3   
18                                                NaN   
19                                                NaN   
20                                                NaN   
21                                                  4   
22                                                NaN   
23                                                NaN   
24                                                NaN   
25                                                NaN   
26                                                NaN   
27                                                NaN   
28                                                NaN   
29                                                NaN   
30                                                  4   
31                                                NaN   
32                                                  4   
33                                                NaN   
34                                                NaN   
35                                                NaN   
36                                                NaN   
37                                                NaN   
38                                                  3   
39                                                  3   
40                                                NaN   
41                                                  4   
42                                                  2   
43                                                NaN   
44                                                NaN   
45                                                  3   
46                                                NaN   
47                                                  3   
48                                                NaN   
49                                                NaN   
50                                                NaN   
51                                                NaN   
52                                                NaN   
53                                                  4   
54                                                NaN   
55                                                NaN   
56                                                NaN   
57                                                NaN   
58                                                  4   
59                                                  3   
60                                                  4   
61                                                NaN   
62                                                NaN   
63                                                NaN   
64                                                NaN   
65                                                NaN   
66                                                  3   
67                                                NaN   
68                                                  4   
69                                                NaN   
70                                                NaN   
71                                                  2   
72                                                  3   
73                                                NaN   
74                                                  4   
75                                                NaN   
76                                                  4   
77                                                  4   
78                                                NaN   
79                                                NaN   
80                                                NaN   
81                                                  4   
82                                                NaN   
83                                                NaN   
84                                                NaN   
85                                                NaN   
86                                                  3   
87                                                NaN   
88                                                  4   
89                                                NaN   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                NaN   
94                                                  3   
95                                                NaN   
96                                                NaN   

                  Pubertal Development Scale (PDS).10  \
0   Have you begun to grow hair on your face? (1=f...   
1                                              pdsm_5   
2                                                 NaN   
3                                                 NaN   
4                                                   3   
5                                                 NaN   
6                                                   2   
7                                                 NaN   
8                                                 NaN   
9                                                   4   
10                                                  3   
11                                                NaN   
12                                                  2   
13                                                NaN   
14                                                  3   
15                                                  3   
16                                                  2   
17                                                  3   
18                                                NaN   
19                                                NaN   
20                                                NaN   
21                                                  3   
22                                                NaN   
23                                                NaN   
24                                                NaN   
25                                                NaN   
26                                                NaN   
27                                                NaN   
28                                                NaN   
29                                                NaN   
30                                                  3   
31                                                NaN   
32                                                  3   
33                                                NaN   
34                                                NaN   
35                                                NaN   
36                                                NaN   
37                                                NaN   
38                                                  3   
39                                                  1   
40                                                NaN   
41                                                  3   
42                                                  2   
43                                                NaN   
44                                                NaN   
45                                                  3   
46                                                NaN   
47                                                  3   
48                                                NaN   
49                                                NaN   
50                                                NaN   
51                                                NaN   
52                                                NaN   
53                                                  3   
54                                                NaN   
55                                                NaN   
56                                                NaN   
57                                                NaN   
58                                                  3   
59                                                  3   
60                                                  4   
61                                                NaN   
62                                                NaN   
63                                                NaN   
64                                                NaN   
65                                                NaN   
66                                                  3   
67                                                NaN   
68                                                  4   
69                                                NaN   
70                                                NaN   
71                                                  2   
72                                                  3   
73                                                NaN   
74                                                  2   
75                                                NaN   
76                                                  3   
77                                                  2   
78                                                NaN   
79                                                NaN   
80                                                NaN   
81                                                  2   
82                                                NaN   
83                                                NaN   
84                                                NaN   
85                                                NaN   
86                                                  3   
87                                                NaN   
88                                                  3   
89                                                NaN   
90                                                  3   
91                                                  3   
92                                                  3   
93                                                NaN   
94                                                  2   
95                                                NaN   
96                                                NaN   

   Thought Control Questionnaire Insomnia - Revised (TCQI-R)  \
0   I tell myself not to think about them now (1=A...          
1                                              tcqi_1          
2                                                   4          
3                                                   1          
4                                                   1          
5                                                   3          
6                                                   2          
7                                                   3          
8                                                   4          
9                                                   2          
10                                                  2          
11                                                  2          
12                                                  2          
13                                                  3          
14                                                  2          
15                                                  2          
16                                                  3          
17                                                  2          
18                                                  3          
19                                                  2          
20                                                  2          
21                                                  2          
22                                                  3          
23                                                  2          
24                                                  2          
25                                                  1          
26                                                  1          
27                                                  4          
28                                                  4          
29                                                  4          
30                                                  1          
31                                                  1          
32                                                  1          
33                                                  1          
34                                                  2          
35                                                  3          
36                                                  2          
37                                                  3          
38                                                  2          
39                                                  2          
40                                                  2          
41                                                  1          
42                                                  3          
43                                                  2          
44                                                  3          
45                                                  4          
46                                                  2          
47                                                  2          
48                                                  2          
49                                                  2          
50                                                  2          
51                                                  2          
52                                                  3          
53                                                  3          
54                                                  3          
55                                                  2          
56                                                  2          
57                                                  3          
58                                                  3          
59                                                  3          
60                                                  2          
61                                                  3          
62                                                  3          
63                                                  3          
64                                                  3          
65                                                  3          
66                                                  3          
67                                                  2          
68                                                  3          
69                                                  2          
70                                                  4          
71                                                  3          
72                                                  1          
73                                                  3          
74                                                  2          
75                                                  3          
76                                                  3          
77                                                  3          
78                                                  2          
79                                                  3          
80                                                  2          
81                                                  2          
82                                                  2          
83                                                  3          
84                                                  3          
85                                                  3          
86                                                  2          
87                                                  2          
88                                                  1          
89                                                  2          
90                                                  1          
91                                                  2          
92                                                  2          
93                                                  2          
94                                                  2          
95                                                  4          
96                                                  2          

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).1  \
0   I try to push the thoughts out of my head.  (1...            
1                                              tcqi_2            
2                                                   4            
3                                                   2            
4                                                   1            
5                                                   3            
6                                                   2            
7                                                   3            
8                                                   2            
9                                                   1            
10                                                  2            
11                                                  2            
12                                                  3            
13                                                  2            
14                                                  2            
15                                                  2            
16                                                  2            
17                                                  2            
18                                                  3            
19                                                  3            
20                                                  2            
21                                                  2            
22                                                  3            
23                                                  2            
24                                                  2            
25                                                  2            
26                                                  1            
27                                                  4            
28                                                  4            
29                                                  4            
30                                                  2            
31                                                  2            
32                                                  2            
33                                                  2            
34                                                  2            
35                                                  3            
36                                                  3            
37                                                  2            
38                                                  1            
39                                                  2            
40                                                  2            
41                                                  1            
42                                                  3            
43                                                  2            
44                                                  3            
45                                                  4            
46                                                  2            
47                                                  2            
48                                                  2            
49                                                  2            
50                                                  3            
51                                                  2            
52                                                  3            
53                                                  2            
54                                                  2            
55                                                  2            
56                                                  2            
57                                                  2            
58                                                  2            
59                                                  3            
60                                                  2            
61                                                  3            
62                                                  3            
63                                                  3            
64                                                  3            
65                                                  3            
66                                                  2            
67                                                  3            
68                                                  3            
69                                                  3            
70                                                  3            
71                                                  3            
72                                                  1            
73                                                  3            
74                                                  3            
75                                                  4            
76                                                  3            
77                                                  2            
78                                                  2            
79                                                  2            
80                                                  2            
81                                                  3            
82                                                  1            
83                                                  2            
84                                                  3            
85                                                  4            
86                                                  2            
87                                                  2            
88                                                  1            
89                                                  2            
90                                                  1            
91                                                  2            
92                                                  2            
93                                                  3            
94                                                  2            
95                                                  4            
96                                                  2            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).2  \
0   I call to mind positive images instead  (1=Alm...            
1                                              tcqi_3            
2                                                   4            
3                                                   4            
4                                                   3            
5                                                   2            
6                                                   2            
7                                                   2            
8                                                   2            
9                                                   3            
10                                                  1            
11                                                  2            
12                                                  2            
13                                                  3            
14                                                  2            
15                                                  2            
16                                                  3            
17                                                  2            
18                                                  3            
19                                                  3            
20                                                  3            
21                                                  2            
22                                                  3            
23                                                  2            
24                                                  4            
25                                                  1            
26                                                  2            
27                                                  2            
28                                                  2            
29                                                  1            
30                                                  3            
31                                                  2            
32                                                  2            
33                                                  1            
34                                                  3            
35                                                  3            
36                                                  4            
37                                                  2            
38                                                  3            
39                                                  2            
40                                                  1            
41                                                  2            
42                                                  2            
43                                                  2            
44                                                  3            
45                                                  4            
46                                                  4            
47                                                  2            
48                                                  2            
49                                                  3            
50                                                  3            
51                                                  1            
52                                                  1            
53                                                  2            
54                                                  3            
55                                                  1            
56                                                  2            
57                                                  4            
58                                                  1            
59                                                  3            
60                                                  2            
61                                                  4            
62                                                  2            
63                                                  2            
64                                                  3            
65                                                  1            
66                                                  2            
67                                                  3            
68                                                  2            
69                                                  2            
70                                                  4            
71                                                  2            
72                                                  1            
73                                                  3            
74                                                  3            
75                                                  3            
76                                                  3            
77                                                  1            
78                                                  2            
79                                                  2            
80                                                  2            
81                                                  3            
82                                                  2            
83                                                  1            
84                                                  3            
85                                                  2            
86                                                  3            
87                                                  1            
88                                                  1            
89                                                  4            
90                                                  1            
91                                                  2            
92                                                  2            
93                                                  2            
94                                                  1            
95                                                  4            
96                                                  2            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).3  \
0   If the thoughts relate to a problem I make a d...            
1                                              tcqi_4            
2                                                   2            
3                                                   3            
4                                                   3            
5                                                   2            
6                                                   3            
7                                                   2            
8                                                   4            
9                                                   2            
10                                                  3            
11                                                  2            
12                                                  1            
13                                                  2            
14                                                  2            
15                                                  3            
16                                                  2            
17                                                  3            
18                                                  3            
19                                                  2            
20                                                  2            
21                                                  3            
22                                                  3            
23                                                  2            
24                                                  2            
25                                                  4            
26                                                  4            
27                                                  4            
28                                                  1            
29                                                  1            
30                                                  2            
31                                                  3            
32                                                  2            
33                                                  1            
34                                                  3            
35                                                  1            
36                                                  3            
37                                                  4            
38                                                  2            
39                                                  2            
40                                                  2            
41                                                  3            
42                                                  1            
43                                                  2            
44                                                  3            
45                                                  4            
46                                                  3            
47                                                  3            
48                                                  3            
49                                                  2            
50                                                  3            
51                                                  1            
52                                                  2            
53                                                  2            
54                                                  3            
55                                                  3            
56                                                  2            
57                                                  1            
58                                                  2            
59                                                  4            
60                                                  3            
61                                                  2            
62                                                  2            
63                                                  2            
64                                                  3            
65                                                  1            
66                                                  3            
67                                                  3            
68                                                  2            
69                                                  2            
70                                                  2            
71                                                  4            
72                                                  2            
73                                                  1            
74                                                  1            
75                                                  2            
76                                                  2            
77                                                  2            
78                                                  3            
79                                                  2            
80                                                  2            
81                                                  4            
82                                                  2            
83                                                  1            
84                                                  2            
85                                                  4            
86                                                  2            
87                                                  4            
88                                                  2            
89                                                  4            
90                                                  1            
91                                                  3            
92                                                  2            
93                                                  2            
94                                                  2            
95                                                  4            
96                                                  2            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).4  \
0   I try to block them out by reading a book, wat...            
1                                              tcqi_5            
2                                                   2            
3                                                   3            
4                                                   3            
5                                                   2            
6                                                   1            
7                                                   3            
8                                                   2            
9                                                   1            
10                                                  2            
11                                                  3            
12                                                  2            
13                                                  2            
14                                                  1            
15                                                  1            
16                                                  1            
17                                                  2            
18                                                  3            
19                                                  1            
20                                                  3            
21                                                  1            
22                                                  3            
23                                                  2            
24                                                  2            
25                                                  2            
26                                                  1            
27                                                  1            
28                                                  1            
29                                                  1            
30                                                  2            
31                                                  2            
32                                                  2            
33                                                  2            
34                                                  3            
35                                                  2            
36                                                  1            
37                                                  2            
38                                                  1            
39                                                  3            
40                                                  1            
41                                                  2            
42                                                  4            
43                                                  4            
44                                                  3            
45                                                  3            
46                                                  1            
47                                                  2            
48                                                  1            
49                                                  1            
50                                                  3            
51                                                  1            
52                                                  1            
53                                                  1            
54                                                  2            
55                                                  1            
56                                                  2            
57                                                  1            
58                                                  1            
59                                                  3            
60                                                  1            
61                                                  4            
62                                                  3            
63                                                  1            
64                                                  1            
65                                                  4            
66                                                  2            
67                                                  1            
68                                                  4            
69                                                  2            
70                                                  3            
71                                                  2            
72                                                  1            
73                                                  3            
74                                                  2            
75                                                  3            
76                                                  4            
77                                                  1            
78                                                  3            
79                                                  4            
80                                                  2            
81                                                  1            
82                                                  1            
83                                                  2            
84                                                  2            
85                                                  4            
86                                                  2            
87                                                  3            
88                                                  1            
89                                                  2            
90                                                  2            
91                                                  1            
92                                                  3            
93                                                  3            
94                                                  1            
95                                                  3            
96                                                  4            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).5  \
0   I ruminate about them  (1=Almost never\n2=Some...            
1                                              tcqi_6            
2                                                   1            
3                                                   2            
4                                                   2            
5                                                   2            
6                                                   3            
7                                                   1            
8                                                   2            
9                                                   1            
10                                                  1            
11                                                  2            
12                                                  1            
13                                                  2            
14                                                  1            
15                                                  2            
16                                                  2            
17                                                  2            
18                                                  2            
19                                                  3            
20                                                  2            
21                                                  2            
22                                                  2            
23                                                  2            
24                                                  2            
25                                                  4            
26                                                  1            
27                                                  2            
28                                                  1            
29                                                  4            
30                                                  1            
31                                                  2            
32                                                  1            
33                                                  1            
34                                                  2            
35                                                  4            
36                                                  2            
37                                                  2            
38                                                  1            
39                                                  2            
40                                                  1            
41                                                  2            
42                                                  1            
43                                                  2            
44                                                  4            
45                                                  2            
46                                                  3            
47                                                  2            
48                                                  1            
49                                                  1            
50                                                  2            
51                                                  1            
52                                                  2            
53                                                  2            
54                                                  4            
55                                                  3            
56                                                  4            
57                                                  1            
58                                                  2            
59                                                  2            
60                                                  3            
61                                                  2            
62                                                  3            
63                                                  2            
64                                                  2            
65                                                  2            
66                                                  2            
67                                                  2            
68                                                  2            
69                                                  3            
70                                                  2            
71                                                  3            
72                                                  1            
73                                                  1            
74                                                  2            
75                                                  3            
76                                                  2            
77                                                  2            
78                                                  3            
79                                                  2            
80                                                  3            
81                                                  2            
82                                                  1            
83                                                  3            
84                                                  3            
85                                                  1            
86                                                  2            
87                                                  3            
88                                                  3            
89                                                  2            
90                                                  1            
91                                                  4            
92                                                  2            
93                                                  2            
94                                                  1            
95                                                  2            
96                                                  2            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).6  \
0   I decide to put them 'on hold' until the morni...            
1                                              tcqi_7            
2                                                   2            
3                                                   2            
4                                                   2            
5                                                   3            
6                                                   1            
7                                                   2            
8                                                   1            
9                                                   1            
10                                                  2            
11                                                  2            
12                                                  3            
13                                                  2            
14                                                  2            
15                                                  2            
16                                                  3            
17                                                  4            
18                                                  3            
19                                                  2            
20                                                  2            
21                                                  2            
22                                                  2            
23                                                  1            
24                                                  1            
25                                                  1            
26                                                  1            
27                                                  2            
28                                                  4            
29                                                  1            
30                                                  3            
31                                                  1            
32                                                  3            
33                                                  1            
34                                                  3            
35                                                  2            
36                                                  3            
37                                                  2            
38                                                  1            
39                                                  2            
40                                                  3            
41                                                  2            
42                                                  2            
43                                                  4            
44                                                  3            
45                                                  3            
46                                                  2            
47                                                  2            
48                                                  2            
49                                                  2            
50                                                  2            
51                                                  2            
52                                                  1            
53                                                  3            
54                                                  1            
55                                                  1            
56                                                  2            
57                                                  4            
58                                                  3            
59                                                  3            
60                                                  2            
61                                                  2            
62                                                  3            
63                                                  2            
64                                                  3            
65                                                  1            
66                                                  1            
67                                                  2            
68                                                  2            
69                                                  1            
70                                                  2            
71                                                  2            
72                                                  1            
73                                                  3            
74                                                  3            
75                                                  2            
76                                                  4            
77                                                  3            
78                                                  2            
79                                                  2            
80                                                  2            
81                                                  3            
82                                                  1            
83                                                  2            
84                                                  2            
85                                                  2            
86                                                  2            
87                                                  2            
88                                                  1            
89                                                  2            
90                                                  1            
91                                                  2            
92                                                  2            
93                                                  4            
94                                                  2            
95                                                  2            
96                                                  2            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).7  \
0   I let my mind go blank (1=Almost never\n2=Some...            
1                                              tcqi_8            
2                                                   2            
3                                                   1            
4                                                   1            
5                                                   2            
6                                                   2            
7                                                   1            
8                                                   1            
9                                                   3            
10                                                  1            
11                                                  1            
12                                                  3            
13                                                  3            
14                                                  2            
15                                                  1            
16                                                  1            
17                                                  1            
18                                                  3            
19                                                  3            
20                                                  2            
21                                                  1            
22                                                  2            
23                                                  1            
24                                                  1            
25                                                  1            
26                                                  2            
27                                                  2            
28                                                  3            
29                                                  4            
30                                                  2            
31                                                  2            
32                                                  3            
33                                                  2            
34                                                  2            
35                                                  1            
36                                                  1            
37                                                  1            
38                                                  3            
39                                                  1            
40                                                  3            
41                                                  2            
42                                                  4            
43                                                  2            
44                                                  4            
45                                                  3            
46                                                  2            
47                                                  2            
48                                                  1            
49                                                  1            
50                                                  2            
51                                                  3            
52                                                  2            
53                                                  3            
54                                                  1            
55                                                  1            
56                                                  1            
57                                                  1            
58                                                  4            
59                                                  2            
60                                                  1            
61                                                  1            
62                                                  1            
63                                                  1            
64                                                  2            
65                                                  1            
66                                                  1            
67                                                  2            
68                                                  3            
69                                                  1            
70                                                  1            
71                                                  2            
72                                                  1            
73                                                  1            
74                                                  3            
75                                                  2            
76                                                  1            
77                                                  1            
78                                                  2            
79                                                  1            
80                                                  2            
81                                                  3            
82                                                  2            
83                                                  3            
84                                                  1            
85                                                  1            
86                                                  2            
87                                                  3            
88                                                  1            
89                                                  1            
90                                                  3            
91                                                  1            
92                                                  1            
93                                                  4            
94                                                  2            
95                                                  1            
96                                                  2            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).8  \
0   I tell myself not to be so stupid (1=Almost ne...            
1                                              tcqi_9            
2                                                   1            
3                                                   1            
4                                                   1            
5                                                   1            
6                                                   2            
7                                                   1            
8                                                   3            
9                                                   1            
10                                                  2            
11                                                  1            
12                                                  1            
13                                                  1            
14                                                  1            
15                                                  1            
16                                                  2            
17                                                  1            
18                                                  2            
19                                                  1            
20                                                  1            
21                                                  1            
22                                                  2            
23                                                  2            
24                                                  1            
25                                                  4            
26                                                  1            
27                                                  2            
28                                                  1            
29                                                  1            
30                                                  1            
31                                                  1            
32                                                  1            
33                                                  4            
34                                                  1            
35                                                  2            
36                                                  1            
37                                                  1            
38                                                  1            
39                                                  3            
40                                                  1            
41                                                  1            
42                                                  3            
43                                                  2            
44                                                  1            
45                                                  1            
46                                                  1            
47                                                  1            
48                                                  1            
49                                                  1            
50                                                  2            
51                                                  1            
52                                                  3            
53                                                  1            
54                                                  2            
55                                                  1            
56                                                  2            
57                                                  1            
58                                                  1            
59                                                  2            
60                                                  2            
61                                                  3            
62                                                  1            
63                                                  1            
64                                                  2            
65                                                  4            
66                                                  1            
67                                                  1            
68                                                  2            
69                                                  2            
70                                                  1            
71                                                  2            
72                                                  1            
73                                                  2            
74                                                  2            
75                                                  1            
76                                                  1            
77                                                  1            
78                                                  1            
79                                                  1            
80                                                  2            
81                                                  2            
82                                                  1            
83                                                  2            
84                                                  1            
85                                                  3            
86                                                  1            
87                                                  1            
88                                                  1            
89                                                  1            
90                                                  1            
91                                                  1            
92                                                  2            
93                                                  3            
94                                                  2            
95                                                  1            
96                                                  1            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).9  \
0   I focus on the thought  (1=Almost never\n2=Som...            
1                                             tcqi_10            
2                                                   1            
3                                                   2            
4                                                   1            
5                                                   2            
6                                                   3            
7                                                   2            
8                                                   2            
9                                                   2            
10                                                  3            
11                                                  2            
12                                                  3            
13                                                  2            
14                                                  1            
15                                                  3            
16                                                  2            
17                                                  2            
18                                                  2            
19                                                  1            
20                                                  1            
21                                                  2            
22                                                  2            
23                                                  2            
24                                                  2            
25                                                  4            
26                                                  2            
27                                                  1            
28                                                  2            
29                                                  2            
30                                                  2            
31                                                  2            
32                                                  2            
33                                                  2            
34                                                  2            
35                                                  4            
36                                                  2            
37                                                  3            
38                                                  2            
39                                                  1            
40                                                  2            
41                                                  2            
42                                                  1            
43                                                  2            
44                                                  2            
45                                                  2            
46                                                  3            
47                                                  2            
48                                                  2            
49                                                  2            
50                                                  3            
51                                                  2            
52                                                  3            
53                                                  2            
54                                                  3            
55                                                  3            
56                                                  2            
57                                                  2            
58                                                  1            
59                                                  3            
60                                                  3            
61                                                  2            
62                                                  2            
63                                                  3            
64                                                  3            
65                                                  2            
66                                                  2            
67                                                  2            
68                                                  2            
69                                                  2            
70                                                  2            
71                                                  2            
72                                                  1            
73                                                  2            
74                                                  3            
75                                                  4            
76                                                  3            
77                                                  2            
78                                                  1            
79                                                  2            
80                                                  3            
81                                                  1            
82                                                  1            
83                                                  3            
84                                                  2            
85                                                  1            
86                                                  3            
87                                                  3            
88                                                  3            
89                                                  3            
90                                                  1            
91                                                  3            
92                                                  2            
93                                                  2            
94                                                  1            
95                                                  2            
96                                                  2            

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).10  \
0   I replace the thought with a more trivial bad ...             
1                                             tcqi_11             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   2             
7                                                   1             
8                                                   2             
9                                                   1             
10                                                  1             
11                                                  1             
12                                                  1             
13                                                  1             
14                                                  1             
15                                                  1             
16                                                  1             
17                                                  1             
18                                                  1             
19                                                  1             
20                                                  1             
21                                                  1             
22                                                  2             
23                                                  2             
24                                                  1             
25                                                  1             
26                                                  1             
27                                                  1             
28                                                  2             
29                                                  1             
30                                                  2             
31                                                  1             
32                                                  1             
33                                                  1             
34                                                  2             
35                                                  2             
36                                                  1             
37                                                  2             
38                                                  1             
39                                                  1             
40                                                  1             
41                                                  1             
42                                                  1             
43                                                  2             
44                                                  1             
45                                                  1             
46                                                  1             
47                                                  2             
48                                                  1             
49                                                  1             
50                                                  1             
51                                                  1             
52                                                  2             
53                                                  1             
54                                                  1             
55                                                  2             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  1             
60                                                  1             
61                                                  1             
62                                                  1             
63                                                  2             
64                                                  2             
65                                                  1             
66                                                  1             
67                                                  1             
68                                                  1             
69                                                  3             
70                                                  1             
71                                                  1             
72                                                  1             
73                                                  3             
74                                                  1             
75                                                  3             
76                                                  1             
77                                                  2             
78                                                  1             
79                                                  2             
80                                                  1             
81                                                  1             
82                                                  1             
83                                                  3             
84                                                  1             
85                                                  1             
86                                                  1             
87                                                  1             
88                                                  1             
89                                                  1             
90                                                  1             
91                                                  1             
92                                                  2             
93                                                  2             
94                                                  1             
95                                                  1             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).11  \
0   I punish myself for thinking the thought (1=Al...             
1                                             tcqi_12             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   1             
7                                                   3             
8                                                   1             
9                                                   1             
10                                                  1             
11                                                  1             
12                                                  1             
13                                                  1             
14                                                  1             
15                                                  1             
16                                                  1             
17                                                  1             
18                                                  1             
19                                                  1             
20                                                  1             
21                                                  1             
22                                                  1             
23                                                  1             
24                                                  1             
25                                                  1             
26                                                  1             
27                                                  1             
28                                                  1             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  1             
34                                                  1             
35                                                  1             
36                                                  1             
37                                                  1             
38                                                  1             
39                                                  1             
40                                                  1             
41                                                  1             
42                                                  1             
43                                                  1             
44                                                  1             
45                                                  1             
46                                                  1             
47                                                  1             
48                                                  1             
49                                                  1             
50                                                  1             
51                                                  1             
52                                                  3             
53                                                  1             
54                                                  1             
55                                                  1             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  1             
60                                                  1             
61                                                  1             
62                                                  1             
63                                                  1             
64                                                  1             
65                                                  1             
66                                                  1             
67                                                  1             
68                                                  1             
69                                                  2             
70                                                  1             
71                                                  2             
72                                                  1             
73                                                  1             
74                                                  1             
75                                                  1             
76                                                  1             
77                                                  1             
78                                                  1             
79                                                  1             
80                                                  1             
81                                                  1             
82                                                  1             
83                                                  2             
84                                                  1             
85                                                  1             
86                                                  1             
87                                                  3             
88                                                  1             
89                                                  1             
90                                                  1             
91                                                  1             
92                                                  1             
93                                                  1             
94                                                  1             
95                                                  1             
96                                                  1             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).12  \
0   I dwell on other worries  (1=Almost never\n2=S...             
1                                             tcqi_13             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   2             
7                                                   3             
8                                                   3             
9                                                   1             
10                                                  1             
11                                                  1             
12                                                  1             
13                                                  2             
14                                                  1             
15                                                  2             
16                                                  1             
17                                                  1             
18                                                  1             
19                                                  2             
20                                                  1             
21                                                  2             
22                                                  2             
23                                                  2             
24                                                  1             
25                                                  4             
26                                                  1             
27                                                  1             
28                                                  1             
29                                                  2             
30                                                  1             
31                                                  2             
32                                                  1             
33                                                  2             
34                                                  1             
35                                                  4             
36                                                  2             
37                                                  2             
38                                                  1             
39                                                  1             
40                                                  1             
41                                                  2             
42                                                  1             
43                                                  2             
44                                                  2             
45                                                  1             
46                                                  2             
47                                                  2             
48                                                  1             
49                                                  1             
50                                                  1             
51                                                  2             
52                                                  3             
53                                                  1             
54                                                  2             
55                                                  2             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  1             
60                                                  2             
61                                                  2             
62                                                  2             
63                                                  3             
64                                                  2             
65                                                  2             
66                                                  2             
67                                                  3             
68                                                  1             
69                                                  4             
70                                                  2             
71                                                  1             
72                                                  1             
73                                                  3             
74                                                  1             
75                                                  4             
76                                                  1             
77                                                  2             
78                                                  1             
79                                                  3             
80                                                  2             
81                                                  2             
82                                                  1             
83                                                  2             
84                                                  2             
85                                                  1             
86                                                  2             
87                                                  3             
88                                                  3             
89                                                  2             
90                                                  2             
91                                                  2             
92                                                  2             
93                                                  3             
94                                                  1             
95                                                  2             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).13  \
0   I keep the thought to myself (1=Almost never\n...             
1                                             tcqi_14             
2                                                   1             
3                                                   2             
4                                                   1             
5                                                   2             
6                                                   3             
7                                                   1             
8                                                   3             
9                                                   2             
10                                                  2             
11                                                  3             
12                                                  4             
13                                                  2             
14                                                  1             
15                                                  3             
16                                                  3             
17                                                  2             
18                                                  3             
19                                                  3             
20                                                  2             
21                                                  2             
22                                                  2             
23                                                  2             
24                                                  3             
25                                                  4             
26                                                  2             
27                                                  3             
28                                                  4             
29                                                  2             
30                                                  4             
31                                                  4             
32                                                  3             
33                                                  4             
34                                                  2             
35                                                  2             
36                                                  3             
37                                                  2             
38                                                  3             
39                                                  4             
40                                                  2             
41                                                  4             
42                                                  3             
43                                                  2             
44                                                  2             
45                                                  1             
46                                                  2             
47                                                  4             
48                                                  3             
49                                                  1             
50                                                  1             
51                                                  1             
52                                                  2             
53                                                  3             
54                                                  3             
55                                                  2             
56                                                  2             
57                                                  3             
58                                                  3             
59                                                  3             
60                                                  3             
61                                                  4             
62                                                  2             
63                                                  3             
64                                                  4             
65                                                  2             
66                                                  3             
67                                                  4             
68                                                  4             
69                                                  3             
70                                                  2             
71                                                  2             
72                                                  4             
73                                                  4             
74                                                  2             
75                                                  4             
76                                                  4             
77                                                  3             
78                                                  2             
79                                                  3             
80                                                  3             
81                                                  4             
82                                                  2             
83                                                  3             
84                                                  2             
85                                                  4             
86                                                  4             
87                                                  4             
88                                                  3             
89                                                  2             
90                                                  1             
91                                                  3             
92                                                  4             
93                                                  3             
94                                                  1             
95                                                  4             
96                                                  3             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).14  \
0   I think about something else instead (1=Almost...             
1                                             tcqi_15             
2                                                   3             
3                                                   3             
4                                                   2             
5                                                   2             
6                                                   2             
7                                                   2             
8                                                   2             
9                                                   3             
10                                                  2             
11                                                  3             
12                                                  3             
13                                                  3             
14                                                  2             
15                                                  2             
16                                                  2             
17                                                  2             
18                                                  3             
19                                                  2             
20                                                  3             
21                                                  2             
22                                                  3             
23                                                  2             
24                                                  2             
25                                                  1             
26                                                  1             
27                                                  3             
28                                                  4             
29                                                  1             
30                                                  4             
31                                                  2             
32                                                  2             
33                                                  2             
34                                                  2             
35                                                  2             
36                                                  2             
37                                                  2             
38                                                  3             
39                                                  2             
40                                                  2             
41                                                  2             
42                                                  3             
43                                                  2             
44                                                  2             
45                                                  3             
46                                                  3             
47                                                  2             
48                                                  3             
49                                                  2             
50                                                  2             
51                                                  2             
52                                                  2             
53                                                  3             
54                                                  3             
55                                                  3             
56                                                  2             
57                                                  3             
58                                                  2             
59                                                  2             
60                                                  2             
61                                                  2             
62                                                  2             
63                                                  2             
64                                                  2             
65                                                  2             
66                                                  1             
67                                                  2             
68                                                  3             
69                                                  2             
70                                                  3             
71                                                  3             
72                                                  2             
73                                                  3             
74                                                  3             
75                                                  2             
76                                                  3             
77                                                  4             
78                                                  2             
79                                                  1             
80                                                  3             
81                                                  2             
82                                                  2             
83                                                  2             
84                                                  3             
85                                                  4             
86                                                  2             
87                                                  3             
88                                                  2             
89                                                  4             
90                                                  2             
91                                                  2             
92                                                  3             
93                                                  4             
94                                                  1             
95                                                  4             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).15  \
0   I challenge the thoughts validity (1=Almost ne...             
1                                             tcqi_16             
2                                                   1             
3                                                   3             
4                                                   1             
5                                                   2             
6                                                   3             
7                                                   2             
8                                                   3             
9                                                   1             
10                                                  3             
11                                                  2             
12                                                  2             
13                                                  2             
14                                                  1             
15                                                  3             
16                                                  2             
17                                                  2             
18                                                  2             
19                                                  2             
20                                                  1             
21                                                  1             
22                                                  2             
23                                                  1             
24                                                  2             
25                                                  4             
26                                                  3             
27                                                  2             
28                                                  2             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  2             
33                                                  1             
34                                                  1             
35                                                  2             
36                                                  4             
37                                                  1             
38                                                  1             
39                                                  2             
40                                                  2             
41                                                  3             
42                                                  2             
43                                                  2             
44                                                  2             
45                                                  3             
46                                                  2             
47                                                  3             
48                                                  3             
49                                                  2             
50                                                  1             
51                                                  1             
52                                                  2             
53                                                  1             
54                                                  1             
55                                                  2             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  3             
60                                                  2             
61                                                  1             
62                                                  2             
63                                                  2             
64                                                  3             
65                                                  3             
66                                                  1             
67                                                  1             
68                                                  2             
69                                                  3             
70                                                  2             
71                                                  4             
72                                                  1             
73                                                  4             
74                                                  1             
75                                                  2             
76                                                  1             
77                                                  2             
78                                                  2             
79                                                  1             
80                                                  2             
81                                                  2             
82                                                  1             
83                                                  2             
84                                                  3             
85                                                  2             
86                                                  2             
87                                                  3             
88                                                  3             
89                                                  2             
90                                                  1             
91                                                  2             
92                                                  1             
93                                                  2             
94                                                  2             
95                                                  2             
96                                                  3             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).16  \
0   I get angry at myself for having the thought (...             
1                                             tcqi_17             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   1             
7                                                   1             
8                                                   1             
9                                                   1             
10                                                  2             
11                                                  2             
12                                                  1             
13                                                  1             
14                                                  1             
15                                                  2             
16                                                  2             
17                                                  1             
18                                                  1             
19                                                  1             
20                                                  1             
21                                                  1             
22                                                  1             
23                                                  1             
24                                                  1             
25                                                  1             
26                                                  2             
27                                                  1             
28                                                  1             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  2             
34                                                  1             
35                                                  1             
36                                                  1             
37                                                  1             
38                                                  1             
39                                                  1             
40                                                  1             
41                                                  2             
42                                                  1             
43                                                  1             
44                                                  1             
45                                                  2             
46                                                  1             
47                                                  2             
48                                                  1             
49                                                  1             
50                                                  1             
51                                                  1             
52                                                  2             
53                                                  1             
54                                                  1             
55                                                  1             
56                                                  2             
57                                                  1             
58                                                  2             
59                                                  2             
60                                                  1             
61                                                  1             
62                                                  1             
63                                                  1             
64                                                  2             
65                                                  2             
66                                                  1             
67                                                  1             
68                                                  1             
69                                                  2             
70                                                  1             
71                                                  2             
72                                                  1             
73                                                  1             
74                                                  1             
75                                                  1             
76                                                  1             
77                                                  2             
78                                                  1             
79                                                  2             
80                                                  1             
81                                                  1             
82                                                  1             
83                                                  1             
84                                                  1             
85                                                  1             
86                                                  1             
87                                                  2             
88                                                  1             
89                                                  1             
90                                                  1             
91                                                  1             
92                                                  2             
93                                                  1             
94                                                  1             
95                                                  1             
96                                                  1             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).17  \
0   I avoid discussing the thought (1=Almost never...             
1                                             tcqi_18             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   2             
7                                                   2             
8                                                   2             
9                                                   1             
10                                                  1             
11                                                  3             
12                                                  3             
13                                                  1             
14                                                  2             
15                                                  3             
16                                                  3             
17                                                  2             
18                                                  1             
19                                                  2             
20                                                  1             
21                                                  1             
22                                                  2             
23                                                  2             
24                                                  1             
25                                                  2             
26                                                  2             
27                                                  2             
28                                                  2             
29                                                  4             
30                                                  2             
31                                                  2             
32                                                  2             
33                                                  2             
34                                                  2             
35                                                  2             
36                                                  2             
37                                                  2             
38                                                  2             
39                                                  3             
40                                                  1             
41                                                  4             
42                                                  3             
43                                                  2             
44                                                  2             
45                                                  1             
46                                                  2             
47                                                  2             
48                                                  2             
49                                                  2             
50                                                  2             
51                                                  1             
52                                                  3             
53                                                  3             
54                                                  2             
55                                                  2             
56                                                  2             
57                                                  3             
58                                                  1             
59                                                  2             
60                                                  2             
61                                                  2             
62                                                  2             
63                                                  2             
64                                                  2             
65                                                  2             
66                                                  3             
67                                                  3             
68                                                  1             
69                                                  3             
70                                                  2             
71                                                  2             
72                                                  4             
73                                                  4             
74                                                  3             
75                                                  4             
76                                                  3             
77                                                  3             
78                                                  1             
79                                                  3             
80                                                  1             
81                                                  2             
82                                                  1             
83                                                  2             
84                                                  2             
85                                                  4             
86                                                  3             
87                                                  3             
88                                                  1             
89                                                  1             
90                                                  1             
91                                                  3             
92                                                  4             
93                                                  3             
94                                                  1             
95                                                  2             
96                                                  1             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).18  \
0   I shout at myself for having the thought (1=Al...             
1                                             tcqi_19             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   1             
7                                                   1             
8                                                   1             
9                                                   1             
10                                                  1             
11                                                  1             
12                                                  1             
13                                                  1             
14                                                  1             
15                                                  1             
16                                                  1             
17                                                  1             
18                                                  1             
19                                                  1             
20                                                  1             
21                                                  1             
22                                                  1             
23                                                  1             
24                                                  1             
25                                                  1             
26                                                  1             
27                                                  1             
28                                                  1             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  1             
34                                                  1             
35                                                  1             
36                                                  1             
37                                                  2             
38                                                  1             
39                                                  1             
40                                                  1             
41                                                  1             
42                                                  1             
43                                                  1             
44                                                  1             
45                                                  1             
46                                                  1             
47                                                  2             
48                                                  1             
49                                                  1             
50                                                  1             
51                                                  1             
52                                                  1             
53                                                  1             
54                                                  1             
55                                                  1             
56                                                  1             
57                                                  1             
58                                                  1             
59                                                  1             
60                                                  1             
61                                                  1             
62                                                  1             
63                                                  1             
64                                                  2             
65                                                  1             
66                                                  1             
67                                                  1             
68                                                  1             
69                                                  1             
70                                                  1             
71                                                  1             
72                                                  1             
73                                                  1             
74                                                  1             
75                                                  1             
76                                                  1             
77                                                  1             
78                                                  1             
79                                                  1             
80                                                  1             
81                                                  1             
82                                                  1             
83                                                  1             
84                                                  1             
85                                                  1             
86                                                  1             
87                                                  1             
88                                                  1             
89                                                  1             
90                                                  1             
91                                                  1             
92                                                  1             
93                                                  1             
94                                                  1             
95                                                  1             
96                                                  1             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).19  \
0   I analyse the thought rationally  (1=Almost ne...             
1                                             tcqi_20             
2                                                   2             
3                                                   3             
4                                                   1             
5                                                   2             
6                                                   3             
7                                                   2             
8                                                   2             
9                                                   1             
10                                                  3             
11                                                  4             
12                                                  2             
13                                                  3             
14                                                  2             
15                                                  4             
16                                                  2             
17                                                  2             
18                                                  2             
19                                                  3             
20                                                  1             
21                                                  3             
22                                                  2             
23                                                  1             
24                                                  2             
25                                                  3             
26                                                  4             
27                                                  3             
28                                                  2             
29                                                  2             
30                                                  3             
31                                                  2             
32                                                  3             
33                                                  1             
34                                                  2             
35                                                  3             
36                                                  2             
37                                                  2             
38                                                  3             
39                                                  2             
40                                                  3             
41                                                  2             
42                                                  2             
43                                                  3             
44                                                  1             
45                                                  3             
46                                                  2             
47                                                  3             
48                                                  3             
49                                                  3             
50                                                  2             
51                                                  4             
52                                                  2             
53                                                  2             
54                                                  4             
55                                                  3             
56                                                  2             
57                                                  2             
58                                                  2             
59                                                  3             
60                                                  3             
61                                                  3             
62                                                  3             
63                                                  2             
64                                                  4             
65                                                  2             
66                                                  2             
67                                                  2             
68                                                  3             
69                                                  2             
70                                                  2             
71                                                  4             
72                                                  2             
73                                                  2             
74                                                  3             
75                                                  4             
76                                                  2             
77                                                  3             
78                                                  3             
79                                                  2             
80                                                  3             
81                                                  4             
82                                                  4             
83                                                  2             
84                                                  2             
85                                                  2             
86                                                  2             
87                                                  3             
88                                                  3             
89                                                  4             
90                                                  2             
91                                                  2             
92                                                  2             
93                                                  2             
94                                                  1             
95                                                  3             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).20  \
0   I think pleasant thoughts instead (1=Almost ne...             
1                                             tcqi_21             
2                                                   4             
3                                                   4             
4                                                   4             
5                                                   2             
6                                                   2             
7                                                   2             
8                                                   1             
9                                                   1             
10                                                  1             
11                                                  2             
12                                                  2             
13                                                  3             
14                                                  2             
15                                                  2             
16                                                  2             
17                                                  3             
18                                                  3             
19                                                  2             
20                                                  1             
21                                                  2             
22                                                  3             
23                                                  3             
24                                                  4             
25                                                  1             
26                                                  3             
27                                                  3             
28                                                  4             
29                                                  1             
30                                                  4             
31                                                  3             
32                                                  2             
33                                                  3             
34                                                  2             
35                                                  2             
36                                                  2             
37                                                  2             
38                                                  3             
39                                                  2             
40                                                  1             
41                                                  2             
42                                                  2             
43                                                  2             
44                                                  4             
45                                                  3             
46                                                  4             
47                                                  3             
48                                                  3             
49                                                  3             
50                                                  3             
51                                                  2             
52                                                  2             
53                                                  3             
54                                                  4             
55                                                  2             
56                                                  2             
57                                                  4             
58                                                  1             
59                                                  3             
60                                                  2             
61                                                  2             
62                                                  2             
63                                                  2             
64                                                  3             
65                                                  1             
66                                                  1             
67                                                  3             
68                                                  2             
69                                                  2             
70                                                  4             
71                                                  3             
72                                                  2             
73                                                  2             
74                                                  4             
75                                                  2             
76                                                  3             
77                                                  3             
78                                                  2             
79                                                  2             
80                                                  3             
81                                                  3             
82                                                  3             
83                                                  1             
84                                                  2             
85                                                  4             
86                                                  2             
87                                                  3             
88                                                  2             
89                                                  4             
90                                                  2             
91                                                  2             
92                                                  2             
93                                                  3             
94                                                  2             
95                                                  4             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).21  \
0   I worry about more minor things instead  (1=Al...             
1                                             tcqi_22             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   2             
6                                                   2             
7                                                   2             
8                                                   2             
9                                                   1             
10                                                  1             
11                                                  1             
12                                                  1             
13                                                  2             
14                                                  1             
15                                                  2             
16                                                  2             
17                                                  1             
18                                                  2             
19                                                  1             
20                                                  1             
21                                                  1             
22                                                  2             
23                                                  1             
24                                                  2             
25                                                  1             
26                                                  1             
27                                                  1             
28                                                  2             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  1             
34                                                  2             
35                                                  1             
36                                                  3             
37                                                  4             
38                                                  2             
39                                                  1             
40                                                  1             
41                                                  1             
42                                                  2             
43                                                  2             
44                                                  2             
45                                                  3             
46                                                  2             
47                                                  2             
48                                                  3             
49                                                  1             
50                                                  3             
51                                                  1             
52                                                  1             
53                                                  3             
54                                                  2             
55                                                  2             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  1             
60                                                  2             
61                                                  2             
62                                                  2             
63                                                  2             
64                                                  3             
65                                                  2             
66                                                  2             
67                                                  1             
68                                                  1             
69                                                  3             
70                                                  2             
71                                                  2             
72                                                  2             
73                                                  2             
74                                                  2             
75                                                  4             
76                                                  1             
77                                                  2             
78                                                  1             
79                                                  3             
80                                                  2             
81                                                  1             
82                                                  2             
83                                                  2             
84                                                  1             
85                                                  1             
86                                                  2             
87                                                  2             
88                                                  1             
89                                                  2             
90                                                  1             
91                                                  2             
92                                                  2             
93                                                  2             
94                                                  1             
95                                                  3             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).22  \
0   I do something that I enjoy  (1=Almost never\n...             
1                                             tcqi_23             
2                                                   2             
3                                                   3             
4                                                   4             
5                                                   3             
6                                                   2             
7                                                   2             
8                                                   2             
9                                                   3             
10                                                  2             
11                                                  2             
12                                                  2             
13                                                  2             
14                                                  2             
15                                                  2             
16                                                  1             
17                                                  3             
18                                                  4             
19                                                  2             
20                                                  3             
21                                                  2             
22                                                  2             
23                                                  3             
24                                                  4             
25                                                  2             
26                                                  4             
27                                                  2             
28                                                  1             
29                                                  1             
30                                                  3             
31                                                  2             
32                                                  1             
33                                                  2             
34                                                  2             
35                                                  2             
36                                                  2             
37                                                  2             
38                                                  3             
39                                                  3             
40                                                  1             
41                                                  3             
42                                                  4             
43                                                  2             
44                                                  3             
45                                                  3             
46                                                  3             
47                                                  3             
48                                                  3             
49                                                  3             
50                                                  2             
51                                                  3             
52                                                  1             
53                                                  2             
54                                                  2             
55                                                  2             
56                                                  2             
57                                                  4             
58                                                  1             
59                                                  4             
60                                                  3             
61                                                  3             
62                                                  2             
63                                                  2             
64                                                  2             
65                                                  1             
66                                                  3             
67                                                  1             
68                                                  3             
69                                                  2             
70                                                  3             
71                                                  2             
72                                                  3             
73                                                  3             
74                                                  4             
75                                                  3             
76                                                  3             
77                                                  2             
78                                                  3             
79                                                  2             
80                                                  3             
81                                                  2             
82                                                  2             
83                                                  2             
84                                                  2             
85                                                  4             
86                                                  3             
87                                                  3             
88                                                  1             
89                                                  4             
90                                                  2             
91                                                  2             
92                                                  4             
93                                                  3             
94                                                  3             
95                                                  4             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).23  \
0   I try to reinterpret the thought  (1=Almost ne...             
1                                             tcqi_24             
2                                                   1             
3                                                   3             
4                                                   3             
5                                                   1             
6                                                   2             
7                                                   2             
8                                                   2             
9                                                   1             
10                                                  2             
11                                                  2             
12                                                  1             
13                                                  2             
14                                                  1             
15                                                  3             
16                                                  2             
17                                                  2             
18                                                  2             
19                                                  1             
20                                                  1             
21                                                  3             
22                                                  2             
23                                                  1             
24                                                  3             
25                                                  2             
26                                                  1             
27                                                  2             
28                                                  2             
29                                                  1             
30                                                  4             
31                                                  2             
32                                                  1             
33                                                  1             
34                                                  2             
35                                                  2             
36                                                  4             
37                                                  2             
38                                                  2             
39                                                  3             
40                                                  1             
41                                                  1             
42                                                  1             
43                                                  3             
44                                                  2             
45                                                  3             
46                                                  2             
47                                                  2             
48                                                  3             
49                                                  2             
50                                                  2             
51                                                  1             
52                                                  2             
53                                                  2             
54                                                  2             
55                                                  3             
56                                                  2             
57                                                  2             
58                                                  1             
59                                                  3             
60                                                  3             
61                                                  2             
62                                                  2             
63                                                  2             
64                                                  3             
65                                                  2             
66                                                  2             
67                                                  1             
68                                                  2             
69                                                  3             
70                                                  2             
71                                                  3             
72                                                  1             
73                                                  2             
74                                                  2             
75                                                  3             
76                                                  1             
77                                                  1             
78                                                  2             
79                                                  1             
80                                                  2             
81                                                  2             
82                                                  1             
83                                                  2             
84                                                  2             
85                                                  2             
86                                                  2             
87                                                  2             
88                                                  1             
89                                                  3             
90                                                  1             
91                                                  2             
92                                                  2             
93                                                  2             
94                                                  1             
95                                                  3             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).24  \
0   I occupy myself with work instead (1=Almost ne...             
1                                             tcqi_25             
2                                                   1             
3                                                   1             
4                                                   3             
5                                                   1             
6                                                   3             
7                                                   1             
8                                                   2             
9                                                   1             
10                                                  2             
11                                                  2             
12                                                  2             
13                                                  2             
14                                                  1             
15                                                  1             
16                                                  2             
17                                                  1             
18                                                  2             
19                                                  1             
20                                                  1             
21                                                  2             
22                                                  3             
23                                                  1             
24                                                  3             
25                                                  2             
26                                                  1             
27                                                  1             
28                                                  1             
29                                                  1             
30                                                  3             
31                                                  2             
32                                                  1             
33                                                  2             
34                                                  1             
35                                                  2             
36                                                  2             
37                                                  1             
38                                                  1             
39                                                  3             
40                                                  1             
41                                                  1             
42                                                  4             
43                                                  2             
44                                                  2             
45                                                  3             
46                                                  1             
47                                                  4             
48                                                  3             
49                                                  1             
50                                                  3             
51                                                  1             
52                                                  1             
53                                                  1             
54                                                  1             
55                                                  2             
56                                                  3             
57                                                  3             
58                                                  1             
59                                                  1             
60                                                  2             
61                                                  2             
62                                                  3             
63                                                  1             
64                                                  3             
65                                                  1             
66                                                  2             
67                                                  1             
68                                                  2             
69                                                  2             
70                                                  2             
71                                                  2             
72                                                  1             
73                                                  1             
74                                                  3             
75                                                  2             
76                                                  3             
77                                                  1             
78                                                  3             
79                                                  3             
80                                                  1             
81                                                  1             
82                                                  1             
83                                                  2             
84                                                  2             
85                                                  1             
86                                                  2             
87                                                  4             
88                                                  1             
89                                                  2             
90                                                  3             
91                                                  1             
92                                                  1             
93                                                  3             
94                                                  1             
95                                                  2             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).25  \
0   I try a different way of thinking about it  (1...             
1                                             tcqi_26             
2                                                   1             
3                                                   3             
4                                                   2             
5                                                   2             
6                                                   2             
7                                                   2             
8                                                   2             
9                                                   2             
10                                                  3             
11                                                  2             
12                                                  2             
13                                                  2             
14                                                  2             
15                                                  3             
16                                                  2             
17                                                  2             
18                                                  3             
19                                                  1             
20                                                  1             
21                                                  3             
22                                                  3             
23                                                  2             
24                                                  4             
25                                                  2             
26                                                  2             
27                                                  2             
28                                                  1             
29                                                  1             
30                                                  3             
31                                                  1             
32                                                  2             
33                                                  2             
34                                                  1             
35                                                  2             
36                                                  4             
37                                                  2             
38                                                  3             
39                                                  2             
40                                                  2             
41                                                  2             
42                                                  2             
43                                                  3             
44                                                  1             
45                                                  3             
46                                                  2             
47                                                  3             
48                                                  3             
49                                                  3             
50                                                  2             
51                                                  2             
52                                                  2             
53                                                  2             
54                                                  1             
55                                                  3             
56                                                  2             
57                                                  3             
58                                                  1             
59                                                  4             
60                                                  2             
61                                                  3             
62                                                  2             
63                                                  2             
64                                                  3             
65                                                  1             
66                                                  1             
67                                                  2             
68                                                  3             
69                                                  2             
70                                                  3             
71                                                  4             
72                                                  1             
73                                                  2             
74                                                  2             
75                                                  3             
76                                                  1             
77                                                  1             
78                                                  3             
79                                                  1             
80                                                  2             
81                                                  2             
82                                                  2             
83                                                  2             
84                                                  2             
85                                                  2             
86                                                  2             
87                                                  2             
88                                                  3             
89                                                  3             
90                                                  1             
91                                                  3             
92                                                  2             
93                                                  3             
94                                                  1             
95                                                  4             
96                                                  4             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).26  \
0   I think about past worries instead  (1=Almost ...             
1                                             tcqi_27             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   2             
7                                                   1             
8                                                   2             
9                                                   1             
10                                                  1             
11                                                  1             
12                                                  1             
13                                                  1             
14                                                  1             
15                                                  1             
16                                                  2             
17                                                  1             
18                                                  2             
19                                                  1             
20                                                  1             
21                                                  2             
22                                                  2             
23                                                  2             
24                                                  1             
25                                                  1             
26                                                  1             
27                                                  2             
28                                                  2             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  1             
34                                                  1             
35                                                  3             
36                                                  3             
37                                                  1             
38                                                  1             
39                                                  1             
40                                                  1             
41                                                  1             
42                                                  2             
43                                                  2             
44                                                  1             
45                                                  2             
46                                                  2             
47                                                  2             
48                                                  2             
49                                                  1             
50                                                  2             
51                                                  1             
52                                                  2             
53                                                  2             
54                                                  3             
55                                                  2             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  1             
60                                                  1             
61                                                  2             
62                                                  2             
63                                                  3             
64                                                  2             
65                                                  1             
66                                                  1             
67                                                  2             
68                                                  2             
69                                                  3             
70                                                  2             
71                                                  2             
72                                                  1             
73                                                  2             
74                                                  1             
75                                                  3             
76                                                  1             
77                                                  2             
78                                                  1             
79                                                  3             
80                                                  2             
81                                                  2             
82                                                  1             
83                                                  2             
84                                                  1             
85                                                  1             
86                                                  1             
87                                                  1             
88                                                  2             
89                                                  2             
90                                                  2             
91                                                  2             
92                                                  1             
93                                                  2             
94                                                  1             
95                                                  1             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).27  \
0   I focus on different negative thoughts  (1=Alm...             
1                                             tcqi_28             
2                                                   1             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   2             
7                                                   1             
8                                                   2             
9                                                   1             
10                                                  1             
11                                                  1             
12                                                  1             
13                                                  1             
14                                                  1             
15                                                  2             
16                                                  2             
17                                                  1             
18                                                  1             
19                                                  1             
20                                                  1             
21                                                  1             
22                                                  2             
23                                                  1             
24                                                  1             
25                                                  1             
26                                                  1             
27                                                  2             
28                                                  2             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  1             
34                                                  1             
35                                                  2             
36                                                  2             
37                                                  1             
38                                                  1             
39                                                  2             
40                                                  1             
41                                                  1             
42                                                  1             
43                                                  3             
44                                                  1             
45                                                  1             
46                                                  1             
47                                                  3             
48                                                  2             
49                                                  1             
50                                                  1             
51                                                  2             
52                                                  2             
53                                                  1             
54                                                  2             
55                                                  2             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  1             
60                                                  1             
61                                                  2             
62                                                  1             
63                                                  3             
64                                                  2             
65                                                  3             
66                                                  1             
67                                                  1             
68                                                  2             
69                                                  2             
70                                                  1             
71                                                  2             
72                                                  1             
73                                                  2             
74                                                  1             
75                                                  3             
76                                                  1             
77                                                  2             
78                                                  1             
79                                                  2             
80                                                  2             
81                                                  1             
82                                                  1             
83                                                  2             
84                                                  1             
85                                                  2             
86                                                  2             
87                                                  1             
88                                                  1             
89                                                  1             
90                                                  1             
91                                                  2             
92                                                  2             
93                                                  2             
94                                                  1             
95                                                  1             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).28  \
0   I question the reasons for having the thought ...             
1                                             tcqi_29             
2                                                   2             
3                                                   2             
4                                                   1             
5                                                   1             
6                                                   3             
7                                                   2             
8                                                   2             
9                                                   1             
10                                                  2             
11                                                  1             
12                                                  1             
13                                                  2             
14                                                  1             
15                                                  3             
16                                                  2             
17                                                  2             
18                                                  2             
19                                                  2             
20                                                  2             
21                                                  3             
22                                                  2             
23                                                  3             
24                                                  3             
25                                                  3             
26                                                  2             
27                                                  2             
28                                                  1             
29                                                  1             
30                                                  3             
31                                                  1             
32                                                  1             
33                                                  2             
34                                                  1             
35                                                  1             
36                                                  3             
37                                                  1             
38                                                  2             
39                                                  2             
40                                                  2             
41                                                  1             
42                                                  1             
43                                                  2             
44                                                  1             
45                                                  2             
46                                                  3             
47                                                  2             
48                                                  2             
49                                                  2             
50                                                  1             
51                                                  2             
52                                                  1             
53                                                  1             
54                                                  2             
55                                                  2             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  2             
60                                                  3             
61                                                  3             
62                                                  1             
63                                                  2             
64                                                  2             
65                                                  2             
66                                                  1             
67                                                  1             
68                                                  2             
69                                                  2             
70                                                  2             
71                                                  2             
72                                                  1             
73                                                  4             
74                                                  1             
75                                                  3             
76                                                  1             
77                                                  2             
78                                                  1             
79                                                  2             
80                                                  2             
81                                                  3             
82                                                  1             
83                                                  2             
84                                                  2             
85                                                  1             
86                                                  2             
87                                                  1             
88                                                  1             
89                                                  2             
90                                                  1             
91                                                  3             
92                                                  2             
93                                                  2             
94                                                  1             
95                                                  4             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).29  \
0   I tell myself that something bad will happen i...             
1                                             tcqi_30             
2                                                   4             
3                                                   1             
4                                                   1             
5                                                   1             
6                                                   1             
7                                                   1             
8                                                   1             
9                                                   1             
10                                                  1             
11                                                  1             
12                                                  2             
13                                                  1             
14                                                  1             
15                                                  1             
16                                                  2             
17                                                  2             
18                                                  1             
19                                                  1             
20                                                  1             
21                                                  1             
22                                                  1             
23                                                  1             
24                                                  1             
25                                                  1             
26                                                  1             
27                                                  1             
28                                                  1             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  2             
34                                                  1             
35                                                  1             
36                                                  1             
37                                                  1             
38                                                  1             
39                                                  2             
40                                                  1             
41                                                  2             
42                                                  1             
43                                                  2             
44                                                  1             
45                                                  1             
46                                                  1             
47                                                  2             
48                                                  1             
49                                                  1             
50                                                  1             
51                                                  1             
52                                                  1             
53                                                  1             
54                                                  1             
55                                                  2             
56                                                  1             
57                                                  1             
58                                                  1             
59                                                  1             
60                                                  1             
61                                                  2             
62                                                  2             
63                                                  1             
64                                                  2             
65                                                  1             
66                                                  1             
67                                                  1             
68                                                  1             
69                                                  2             
70                                                  1             
71                                                  1             
72                                                  1             
73                                                  1             
74                                                  1             
75                                                  2             
76                                                  1             
77                                                  2             
78                                                  1             
79                                                  2             
80                                                  1             
81                                                  1             
82                                                  1             
83                                                  1             
84                                                  1             
85                                                  1             
86                                                  1             
87                                                  1             
88                                                  1             
89                                                  1             
90                                                  1             
91                                                  1             
92                                                  1             
93                                                  1             
94                                                  1             
95                                                  1             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).30  \
0   I keep myself busy  (1=Almost never\n2=Sometim...             
1                                             tcqi_31             
2                                                   3             
3                                                   2             
4                                                   3             
5                                                   1             
6                                                   3             
7                                                   2             
8                                                   2             
9                                                   1             
10                                                  2             
11                                                  3             
12                                                  3             
13                                                  3             
14                                                  1             
15                                                  3             
16                                                  2             
17                                                  3             
18                                                  2             
19                                                  1             
20                                                  2             
21                                                  2             
22                                                  2             
23                                                  2             
24                                                  3             
25                                                  3             
26                                                  2             
27                                                  3             
28                                                  1             
29                                                  1             
30                                                  3             
31                                                  2             
32                                                  1             
33                                                  2             
34                                                  1             
35                                                  3             
36                                                  1             
37                                                  3             
38                                                  2             
39                                                  3             
40                                                  2             
41                                                  1             
42                                                  4             
43                                                  2             
44                                                  2             
45                                                  3             
46                                                  1             
47                                                  3             
48                                                  3             
49                                                  2             
50                                                  3             
51                                                  2             
52                                                  1             
53                                                  2             
54                                                  2             
55                                                  2             
56                                                  2             
57                                                  3             
58                                                  1             
59                                                  3             
60                                                  2             
61                                                  3             
62                                                  2             
63                                                  2             
64                                                  3             
65                                                  2             
66                                                  2             
67                                                  1             
68                                                  1             
69                                                  3             
70                                                  2             
71                                                  2             
72                                                  3             
73                                                  3             
74                                                  3             
75                                                  2             
76                                                  3             
77                                                  1             
78                                                  3             
79                                                  4             
80                                                  2             
81                                                  1             
82                                                  2             
83                                                  2             
84                                                  2             
85                                                  3             
86                                                  3             
87                                                  4             
88                                                  2             
89                                                  2             
90                                                  2             
91                                                  2             
92                                                  3             
93                                                  3             
94                                                  3             
95                                                  4             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).31  \
0   I prefer to think things through than distract...             
1                                             tcqi_32             
2                                                   4             
3                                                   2             
4                                                   4             
5                                                   3             
6                                                   2             
7                                                   3             
8                                                   2             
9                                                   2             
10                                                  3             
11                                                  3             
12                                                  1             
13                                                  4             
14                                                  2             
15                                                  4             
16                                                  2             
17                                                  2             
18                                                  2             
19                                                  2             
20                                                  2             
21                                                  3             
22                                                  2             
23                                                  2             
24                                                  2             
25                                                  4             
26                                                  4             
27                                                  4             
28                                                  2             
29                                                  4             
30                                                  2             
31                                                  3             
32                                                  1             
33                                                  2             
34                                                  2             
35                                                  1             
36                                                  2             
37                                                  4             
38                                                  1             
39                                                  2             
40                                                  2             
41                                                  4             
42                                                  1             
43                                                  2             
44                                                  1             
45                                                  2             
46                                                  3             
47                                                  2             
48                                                  3             
49                                                  3             
50                                                  3             
51                                                  2             
52                                                  2             
53                                                  2             
54                                                  3             
55                                                  3             
56                                                  2             
57                                                  2             
58                                                  2             
59                                                  2             
60                                                  3             
61                                                  3             
62                                                  4             
63                                                  2             
64                                                  2             
65                                                  2             
66                                                  1             
67                                                  2             
68                                                  4             
69                                                  3             
70                                                  3             
71                                                  3             
72                                                  2             
73                                                  2             
74                                                  2             
75                                                  2             
76                                                  1             
77                                                  2             
78                                                  2             
79                                                  2             
80                                                  4             
81                                                  4             
82                                                  3             
83                                                  2             
84                                                  3             
85                                                  2             
86                                                  3             
87                                                  2             
88                                                  4             
89                                                  4             
90                                                  2             
91                                                  3             
92                                                  2             
93                                                  2             
94                                                  1             
95                                                  4             
96                                                  1             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).32  \
0   I seek reassurance from others (e.g. my partne...             
1                                             tcqi_33             
2                                                   4             
3                                                   2             
4                                                   3             
5                                                   2             
6                                                   1             
7                                                   2             
8                                                   2             
9                                                   2             
10                                                  3             
11                                                  1             
12                                                  1             
13                                                  3             
14                                                  1             
15                                                  1             
16                                                  2             
17                                                  1             
18                                                  2             
19                                                  2             
20                                                  2             
21                                                  2             
22                                                  3             
23                                                  2             
24                                                  3             
25                                                  4             
26                                                  4             
27                                                  4             
28                                                  3             
29                                                  1             
30                                                  3             
31                                                  3             
32                                                  1             
33                                                  1             
34                                                  2             
35                                                  3             
36                                                  3             
37                                                  2             
38                                                  1             
39                                                  1             
40                                                  2             
41                                                  1             
42                                                  1             
43                                                  3             
44                                                  1             
45                                                  3             
46                                                  4             
47                                                  3             
48                                                  1             
49                                                  2             
50                                                  3             
51                                                  1             
52                                                  2             
53                                                  1             
54                                                  1             
55                                                  4             
56                                                  2             
57                                                  1             
58                                                  1             
59                                                  3             
60                                                  4             
61                                                  3             
62                                                  2             
63                                                  2             
64                                                  3             
65                                                  4             
66                                                  2             
67                                                  1             
68                                                  2             
69                                                  2             
70                                                  2             
71                                                  3             
72                                                  1             
73                                                  1             
74                                                  2             
75                                                  1             
76                                                  1             
77                                                  2             
78                                                  2             
79                                                  2             
80                                                  4             
81                                                  2             
82                                                  1             
83                                                  2             
84                                                  4             
85                                                  3             
86                                                  2             
87                                                  2             
88                                                  1             
89                                                  4             
90                                                  1             
91                                                  1             
92                                                  1             
93                                                  2             
94                                                  2             
95                                                  1             
96                                                  4             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).33  \
0   I say 'stop' to myself  (1=Almost never\n2=Som...             
1                                             tcqi_34             
2                                                   2             
3                                                   2             
4                                                   1             
5                                                   1             
6                                                   1             
7                                                   1             
8                                                   2             
9                                                   2             
10                                                  2             
11                                                  1             
12                                                  2             
13                                                  2             
14                                                  1             
15                                                  1             
16                                                  2             
17                                                  2             
18                                                  2             
19                                                  1             
20                                                  2             
21                                                  1             
22                                                  2             
23                                                  2             
24                                                  2             
25                                                  2             
26                                                  2             
27                                                  2             
28                                                  4             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  2             
34                                                  1             
35                                                  1             
36                                                  3             
37                                                  2             
38                                                  1             
39                                                  1             
40                                                  2             
41                                                  2             
42                                                  1             
43                                                  2             
44                                                  1             
45                                                  3             
46                                                  2             
47                                                  2             
48                                                  1             
49                                                  1             
50                                                  3             
51                                                  1             
52                                                  2             
53                                                  3             
54                                                  2             
55                                                  1             
56                                                  2             
57                                                  1             
58                                                  2             
59                                                  2             
60                                                  2             
61                                                  1             
62                                                  1             
63                                                  2             
64                                                  2             
65                                                  2             
66                                                  1             
67                                                  1             
68                                                  3             
69                                                  1             
70                                                  1             
71                                                  2             
72                                                  2             
73                                                  2             
74                                                  1             
75                                                  3             
76                                                  2             
77                                                  1             
78                                                  2             
79                                                  2             
80                                                  2             
81                                                  2             
82                                                  1             
83                                                  1             
84                                                  2             
85                                                  2             
86                                                  1             
87                                                  1             
88                                                  1             
89                                                  1             
90                                                  2             
91                                                  2             
92                                                  2             
93                                                  2             
94                                                  1             
95                                                  1             
96                                                  2             

   Thought Control Questionnaire Insomnia - Revised (TCQI-R).34  \
0   I do something physical to block them (e.g. tu...             
1                                             tcqi_35             
2                                                   1             
3                                                   2             
4                                                   2             
5                                                   2             
6                                                   2             
7                                                   1             
8                                                   2             
9                                                   2             
10                                                  2             
11                                                  1             
12                                                  1             
13                                                  2             
14                                                  1             
15                                                  1             
16                                                  2             
17                                                  3             
18                                                  3             
19                                                  2             
20                                                  2             
21                                                  2             
22                                                  2             
23                                                  2             
24                                                  2             
25                                                  2             
26                                                  1             
27                                                  1             
28                                                  3             
29                                                  1             
30                                                  1             
31                                                  1             
32                                                  1             
33                                                  1             
34                                                  1             
35                                                  2             
36                                                  4             
37                                                  1             
38                                                  1             
39                                                  3             
40                                                  1             
41                                                  1             
42                                                  2             
43                                                  1             
44                                                  2             
45                                                  2             
46                                                  2             
47                                                  3             
48                                                  2             
49                                                  1             
50                                                  2             
51                                                  1             
52                                                  2             
53                                                  2             
54                                                  1             
55                                                  1             
56                                                  2             
57                                                  2             
58                                                  1             
59                                                  2             
60                                                  1             
61                                                  1             
62                                                  1             
63                                                  1             
64                                                  3             
65                                                  3             
66                                                  2             
67                                                  2             
68                                                  4             
69                                                  2             
70                                                  2             
71                                                  1             
72                                                  2             
73                                                  2             
74                                                  2             
75                                                  3             
76                                                  1             
77                                                  2             
78                                                  2             
79                                                  2             
80                                                  1             
81                                                  1             
82                                                  1             
83                                                  2             
84                                                  3             
85                                                  1             
86                                                  1             
87                                                  4             
88                                                  1             
89                                                  1             
90                                                  1             
91                                                  4             
92                                                  1             
93                                                  3             
94                                                  1             
95                                                  2             
96                                                  4             

                                Race, Ethnicity & Sex  \
0   Race (choice=<strong>American Indian/Alaska Na...   
1                                            race___0   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                              Race, Ethnicity & Sex.1  \
0   Race (choice=<strong>Asian:</strong> A person ...   
1                                            race___1   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  1   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  1   
15                                                  0   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  0   
20                                                  1   
21                                                  0   
22                                                  1   
23                                                  0   
24                                                  1   
25                                                  1   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  1   
30                                                  0   
31                                                  1   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  1   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  1   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  1   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  1   
55                                                  1   
56                                                  0   
57                                                  1   
58                                                  0   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  0   
70                                                  1   
71                                                  0   
72                                                  1   
73                                                  0   
74                                                  1   
75                                                  0   
76                                                  1   
77                                                  0   
78                                                  1   
79                                                  0   
80                                                  0   
81                                                  1   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  0   
87                                                  1   
88                                                  1   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                              Race, Ethnicity & Sex.2  \
0   Race (choice=<strong>Native Hawaiian or Other ...   
1                                            race___2   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  1   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                              Race, Ethnicity & Sex.3  \
0   Race (choice=<strong>Black or African American...   
1                                            race___3   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  1   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                              Race, Ethnicity & Sex.4  \
0   Race (choice=<strong>White:</strong> A person ...   
1                                            race___4   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   1   
9                                                   1   
10                                                  0   
11                                                  1   
12                                                  0   
13                                                  1   
14                                                  0   
15                                                  1   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  1   
20                                                  0   
21                                                  1   
22                                                  0   
23                                                  1   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  1   
28                                                  1   
29                                                  0   
30                                                  1   
31                                                  0   
32                                                  1   
33                                                  1   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  1   
44                                                  0   
45                                                  1   
46                                                  1   
47                                                  1   
48                                                  1   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  1   
53                                                  1   
54                                                  1   
55                                                  1   
56                                                  1   
57                                                  0   
58                                                  1   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  1   
63                                                  1   
64                                                  1   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  1   
70                                                  0   
71                                                  1   
72                                                  0   
73                                                  1   
74                                                  0   
75                                                  1   
76                                                  0   
77                                                  1   
78                                                  0   
79                                                  1   
80                                                  1   
81                                                  0   
82                                                  1   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  1   
87                                                  0   
88                                                  0   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  1   
94                                                  1   
95                                                  1   
96                                                  1   

                              Race, Ethnicity & Sex.5  \
0   Race (choice=<strong>Unknown / Not Reported</s...   
1                                            race___5   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

                              Race, Ethnicity & Sex.6  \
0   Ethnicity (choice=<strong>Hispanic or Latino</...   
1                                       ethnicity___0   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   1   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  1   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  1   
31                                                  1   
32                                                  1   
33                                                  1   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  1   
39                                                  1   
40                                                  0   
41                                                  0   
42                                                  1   
43                                                  0   
44                                                  0   
45                                                  1   
46                                                  0   
47                                                  1   
48                                                  0   
49                                                  1   
50                                                  1   
51                                                  1   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  1   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  1   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  1   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  1   
94                                                  0   
95                                                  0   
96                                                  0   

                              Race, Ethnicity & Sex.7  \
0   Ethnicity (choice=<strong>NOT Hispanic or Lati...   
1                                       ethnicity___1   
2                                                   1   
3                                                   1   
4                                                   1   
5                                                   1   
6                                                   1   
7                                                   1   
8                                                   0   
9                                                   1   
10                                                  1   
11                                                  1   
12                                                  0   
13                                                  1   
14                                                  1   
15                                                  1   
16                                                  1   
17                                                  1   
18                                                  1   
19                                                  1   
20                                                  1   
21                                                  1   
22                                                  1   
23                                                  1   
24                                                  1   
25                                                  1   
26                                                  1   
27                                                  1   
28                                                  1   
29                                                  1   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  1   
35                                                  1   
36                                                  1   
37                                                  1   
38                                                  0   
39                                                  0   
40                                                  1   
41                                                  1   
42                                                  0   
43                                                  1   
44                                                  1   
45                                                  0   
46                                                  1   
47                                                  0   
48                                                  1   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  1   
53                                                  1   
54                                                  0   
55                                                  0   
56                                                  1   
57                                                  1   
58                                                  1   
59                                                  1   
60                                                  1   
61                                                  1   
62                                                  1   
63                                                  1   
64                                                  0   
65                                                  1   
66                                                  1   
67                                                  1   
68                                                  1   
69                                                  1   
70                                                  1   
71                                                  1   
72                                                  1   
73                                                  1   
74                                                  1   
75                                                  1   
76                                                  1   
77                                                  1   
78                                                  1   
79                                                  1   
80                                                  1   
81                                                  1   
82                                                  0   
83                                                  1   
84                                                  1   
85                                                  1   
86                                                  1   
87                                                  1   
88                                                  1   
89                                                  1   
90                                                  1   
91                                                  1   
92                                                  1   
93                                                  0   
94                                                  1   
95                                                  1   
96                                                  1   

                              Race, Ethnicity & Sex.8  \
0   Ethnicity (choice=<strong>Unknown / Not Report...   
1                                       ethnicity___2   
2                                                   0   
3                                                   0   
4                                                   0   
5                                                   0   
6                                                   0   
7                                                   0   
8                                                   0   
9                                                   0   
10                                                  0   
11                                                  0   
12                                                  0   
13                                                  0   
14                                                  0   
15                                                  0   
16                                                  0   
17                                                  0   
18                                                  0   
19                                                  0   
20                                                  0   
21                                                  0   
22                                                  0   
23                                                  0   
24                                                  0   
25                                                  0   
26                                                  0   
27                                                  0   
28                                                  0   
29                                                  0   
30                                                  0   
31                                                  0   
32                                                  0   
33                                                  0   
34                                                  0   
35                                                  0   
36                                                  0   
37                                                  0   
38                                                  0   
39                                                  0   
40                                                  0   
41                                                  0   
42                                                  0   
43                                                  0   
44                                                  0   
45                                                  0   
46                                                  0   
47                                                  0   
48                                                  0   
49                                                  0   
50                                                  0   
51                                                  0   
52                                                  0   
53                                                  0   
54                                                  0   
55                                                  0   
56                                                  0   
57                                                  0   
58                                                  0   
59                                                  0   
60                                                  0   
61                                                  0   
62                                                  0   
63                                                  0   
64                                                  0   
65                                                  0   
66                                                  0   
67                                                  0   
68                                                  0   
69                                                  0   
70                                                  0   
71                                                  0   
72                                                  0   
73                                                  0   
74                                                  0   
75                                                  0   
76                                                  0   
77                                                  0   
78                                                  0   
79                                                  0   
80                                                  0   
81                                                  0   
82                                                  0   
83                                                  0   
84                                                  0   
85                                                  0   
86                                                  0   
87                                                  0   
88                                                  0   
89                                                  0   
90                                                  0   
91                                                  0   
92                                                  0   
93                                                  0   
94                                                  0   
95                                                  0   
96                                                  0   

      Race, Ethnicity & Sex.9  
0   Gender (0=Female, 1=Male)  
1                         Sex  
2                           0  
3                           0  
4                           1  
5                           0  
6                           1  
7                           0  
8                           0  
9                           1  
10                          1  
11                          0  
12                          1  
13                          0  
14                          1  
15                          1  
16                          1  
17                          1  
18                          0  
19                          0  
20                          0  
21                          1  
22                          0  
23                          0  
24                          0  
25                          0  
26                          0  
27                          0  
28                          0  
29                          0  
30                          1  
31                          0  
32                          1  
33                          0  
34                          0  
35                          0  
36                          0  
37                          0  
38                          1  
39                          1  
40                          0  
41                          1  
42                          1  
43                          0  
44                          0  
45                          1  
46                          0  
47                          1  
48                          0  
49                          0  
50                          0  
51                          0  
52                          0  
53                          1  
54                          0  
55                          0  
56                          0  
57                          0  
58                          1  
59                          1  
60                          1  
61                          0  
62                          0  
63                          0  
64                          0  
65                          0  
66                          1  
67                          0  
68                          1  
69                          0  
70                          0  
71                          1  
72                          1  
73                          0  
74                          1  
75                          0  
76                          1  
77                          1  
78                          0  
79                          0  
80                          0  
81                          1  
82                          0  
83                          0  
84                          0  
85                          0  
86                          1  
87                          0  
88                          1  
89                          0  
90                          1  
91                          1  
92                          1  
93                          0  
94                          1  
95                          0  
96                          0  

Installing Packages for this Notebook:¶

!pip install -q -r requirements.txt

or

#!jupyter nbconvert aInsomnia.ipynb --template toc
!conda install -y nbconvert
!conda install -y pretty-jupyter
!conda install pandas -y 

!conda install -y seaborn 

!conda install -y scikit-learn 
!jupyter contrib nbextension install --user 

!conda install -c conda-forge -y jupyter_contrib_nbextensions

Notebook Conversions¶

In [26]:
!jupyter nbconvert --to html  aInsomnia.ipynb
[NbConvertApp] Converting notebook aInsomnia.ipynb to html
[NbConvertApp] Writing 4906754 bytes to aInsomnia.html
In [27]:
!open .
In [28]:
conda install -c conda-forge jupyterthemes
Collecting package metadata (current_repodata.json): done
Solving environment: done


==> WARNING: A newer version of conda exists. <==
  current version: 23.1.0
  latest version: 23.7.2

Please update conda by running

    $ conda update -n base -c defaults conda

Or to minimize the number of packages updated during conda update use

     conda install conda=23.7.2



## Package Plan ##

  environment location: /Users/josechavez/miniforge3/envs/jupyterEnvs

  added / updated specs:
    - jupyterthemes


The following packages will be UPDATED:

  ca-certificates    pkgs/main::ca-certificates-2023.05.30~ --> conda-forge::ca-certificates-2023.7.22-hf0a4a13_0 
  openssl              pkgs/main::openssl-3.0.10-h1a28f6b_0 --> conda-forge::openssl-3.1.2-h53f4e23_0 

The following packages will be SUPERSEDED by a higher-priority channel:

  certifi            pkgs/main/osx-arm64::certifi-2023.7.2~ --> conda-forge/noarch::certifi-2023.7.22-pyhd8ed1ab_0 



Downloading and Extracting Packages

Preparing transaction: done
Verifying transaction: done
Executing transaction: done

Note: you may need to restart the kernel to use updated packages.
In [29]:
!conda install -y scikit-learn
Collecting package metadata (current_repodata.json): done
Solving environment: done


==> WARNING: A newer version of conda exists. <==
  current version: 23.1.0
  latest version: 23.7.2

Please update conda by running

    $ conda update -n base -c defaults conda

Or to minimize the number of packages updated during conda update use

     conda install conda=23.7.2



## Package Plan ##

  environment location: /Users/josechavez/miniforge3/envs/jupyterEnvs

  added / updated specs:
    - scikit-learn


The following packages will be SUPERSEDED by a higher-priority channel:

  ca-certificates    conda-forge::ca-certificates-2023.7.2~ --> pkgs/main::ca-certificates-2023.05.30-hca03da5_0 
  certifi            conda-forge/noarch::certifi-2023.7.22~ --> pkgs/main/osx-arm64::certifi-2023.7.22-py38hca03da5_0 
  openssl             conda-forge::openssl-3.1.2-h53f4e23_0 --> pkgs/main::openssl-3.0.10-h1a28f6b_0 



Downloading and Extracting Packages

Preparing transaction: done
Verifying transaction: done
Executing transaction: done